App.vue 319 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <div id="app">
  3. <router-view></router-view>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. list:[]
  11. }
  12. },
  13. mounted: function () {
  14. },
  15. created: function () {
  16. },
  17. methods: {
  18. }
  19. }
  20. </script>
  21. <style scoped>
  22. </style>