| 123456789101112131415161718192021222324252627282930313233 |
- <template>
- <h1>扫描仪</h1>
- <Scanner />
- </template>
- <script>
- import Scanner from '@/scanner/index.js';
- export default {
- components: {
- 'Scanner': Scanner,
- },
- data: function(){
- return {
- };
- },
- mounted: function(){
-
- },
- methods: {
-
- },
- };
- </script>
- <style scoped>
- </style>
|