empty.vue 387 B

1234567891011121314151617181920212223
  1. <template>
  2. <v-app ref="app" class="empty-layout">
  3. <v-main ref="main">
  4. <Nuxt />
  5. </v-main>
  6. </v-app>
  7. </template>
  8. <script>
  9. export default {
  10. name: 'EmptyLayout',
  11. data() {
  12. return {};
  13. },
  14. created() {},
  15. mounted() {
  16. // this.$nuxt.$vuetifyApp = this.$refs.app;
  17. this.$vuetify.app = this.$refs.app;
  18. this.$vuetify.main = this.$refs.main;
  19. },
  20. };
  21. </script>