update navigation all
This commit is contained in:
40
registration/components/main.vue
Normal file
40
registration/components/main.vue
Normal file
@@ -0,0 +1,40 @@
|
||||
<template>
|
||||
<v-app style="background:#e8eaf6" >
|
||||
<one-navbar></one-navbar>
|
||||
<v-main class="pt-12">
|
||||
|
||||
<div class="ml-2 mr-2 mt-0 rounded h-100">
|
||||
<one-tabs></one-tabs>
|
||||
<v-row>
|
||||
<v-col cols="12" md="6" sm="12" xs="12" class="mt-3">
|
||||
<one-left></one-left>
|
||||
</v-col>
|
||||
<v-col cols="12" md="6" sm="12" xs="12" class="mt-3">
|
||||
<one-right></one-right>
|
||||
</v-col>
|
||||
</v-row>
|
||||
</div>
|
||||
</v-main>
|
||||
</v-app>
|
||||
</template>
|
||||
|
||||
<script type="module">
|
||||
import NavbarComponent from "../../globalcomponent/one-navbar.vue";
|
||||
|
||||
import Tabs from "./tabs.vue";
|
||||
export default {
|
||||
name: "registration",
|
||||
components: {
|
||||
"one-navbar": NavbarComponent,
|
||||
"one-tabs": Tabs,
|
||||
},
|
||||
mounted() {},
|
||||
data() {
|
||||
return {
|
||||
visible: false,
|
||||
};
|
||||
},
|
||||
computed: {},
|
||||
methods: {},
|
||||
};
|
||||
</script>
|
||||
Reference in New Issue
Block a user