laravel-vue-vuetify-boilerp.../resources/App.vue

17 lines
229 B
Vue
Raw Permalink Normal View History

2024-01-17 12:24:03 +03:00
<template>
<v-app>
<SomeTemplate></SomeTemplate>
</v-app>
</template>
<script>
import SomeTemplate from "./views/SomeTemplate.vue";
export default {
name: "App",
components: {SomeTemplate}
}
</script>