12345678910111213141516171819
  1. <template>
  2. <div class="mainPage">
  3. <router-view></router-view>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: '',
  9. data () {
  10. return {}
  11. },
  12. components: {}
  13. }
  14. </script>
  15. <!-- Add "scoped" attribute to limit CSS to this component only -->
  16. <style lang="scss" scoped>
  17. </style>