12345678910111213141516171819 |
- <template>
- <div class="mainPage">
- <router-view></router-view>
- </div>
- </template>
-
- <script>
- export default {
- name: '',
- data () {
- return {}
- },
- components: {}
- }
- </script>
-
- <!-- Add "scoped" attribute to limit CSS to this component only -->
- <style lang="scss" scoped>
- </style>
|