feat: layout
This commit is contained in:
10
pages/desktop/dashboard.vue
Normal file
10
pages/desktop/dashboard.vue
Normal file
@@ -0,0 +1,10 @@
|
||||
<template>
|
||||
<div>
|
||||
Dashboard Page
|
||||
</div>
|
||||
</template>
|
||||
<script setup lang="ts">
|
||||
definePageMeta({
|
||||
layout: 'desktop'
|
||||
})
|
||||
</script>
|
||||
15
pages/desktop/transaction.vue
Normal file
15
pages/desktop/transaction.vue
Normal file
@@ -0,0 +1,15 @@
|
||||
<template>
|
||||
<div>
|
||||
<NuxtLayout name="desktop">
|
||||
<template #app-bar-container>
|
||||
<v-app-bar-title>Transactions</v-app-bar-title>
|
||||
</template>
|
||||
Transaction Page
|
||||
</NuxtLayout>
|
||||
</div>
|
||||
</template>
|
||||
<script setup lang="ts">
|
||||
definePageMeta({
|
||||
|
||||
})
|
||||
</script>
|
||||
9
pages/index.vue
Normal file
9
pages/index.vue
Normal file
@@ -0,0 +1,9 @@
|
||||
<template>
|
||||
<div>Index</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
definePageMeta({
|
||||
layout: 'desktop'
|
||||
})
|
||||
</script>
|
||||
Reference in New Issue
Block a user