App.vue 279 B

1234567891011121314151617181920
  1. <template>
  2. <div id="app">
  3. <counter></counter>
  4. </div>
  5. </template>
  6. <script>
  7. import Counter from './components/Counter.vue';
  8. export default {
  9. name: 'app',
  10. components: { Counter },
  11. data () {
  12. return {}
  13. }
  14. }
  15. </script>
  16. <style lang="scss">
  17. </style>