template main.vue

This commit is contained in:
2024-08-14 19:28:26 +07:00
parent e76cb444fb
commit 281993b01e
3 changed files with 184 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<template>
<v-app id="inspire">
<one-navbar></one-navbar>
<v-main>
<div class="pa-5 bg-primary-lighten ml-2 rounded-xl h-100">
</div>
</v-main>
</v-app>
</template>
<script type="module">
import NavbarComponent from "../../globalcomponent/one-navbar.vue";
export default {
name: "x-page"
components: {
"one-navbar": NavbarComponent,
}
mounted() {},
data() {
return {
visible: false,
}
},
computed: {},
methods: {
},
};
</script>