1234567891011121314151617181920 |
- <template>
- <div id="app">
- <counter></counter>
- </div>
- </template>
- <script>
- import Counter from './components/Counter.vue';
- export default {
- name: 'app',
- components: { Counter },
- data () {
- return {}
- }
- }
- </script>
- <style lang="scss">
- </style>
|