pageLayout.vue 234 B

12345678910111213141516171819
  1. <template>
  2. <div class="page-layout">
  3. <router-view />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. data () {
  9. return {}
  10. },
  11. computed: {},
  12. created () {},
  13. methods: {}
  14. }
  15. </script>
  16. <style lang="less" scoped>
  17. </style>