1234567891011121314151617181920212223242526 |
- <template>
- <div id="app">
- <router-view></router-view>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {
- list:[]
- }
- },
- mounted: function () {
-
- },
- created: function () {
- },
- methods: {
- }
- }
- </script>
- <style scoped>
-
- </style>
|