Desktop.vue 209 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <div>
  3. <router-view />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. components: {
  9. },
  10. data: function () {
  11. return {
  12. }
  13. },
  14. methods: {
  15. },
  16. }
  17. </script>
  18. <style>
  19. </style>