package list from viandwi24
This commit is contained in:
27
pages/dashboard/index.vue
Normal file
27
pages/dashboard/index.vue
Normal file
@@ -0,0 +1,27 @@
|
||||
<script lang="ts" setup>
|
||||
definePageMeta({
|
||||
layout: 'dashboard',
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<PageWrapper>
|
||||
<PageHeader>
|
||||
<PageTitle :text="$t('pages.dashboard.index.title')" class="capitalize" />
|
||||
</PageHeader>
|
||||
<PageBody>
|
||||
<PageSection>
|
||||
<p>
|
||||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quia autem
|
||||
debitis ab dolorum tempore placeat possimus perferendis porro sit aut
|
||||
nobis quasi hic consequuntur, atque impedit nihil totam illo odit?
|
||||
</p>
|
||||
</PageSection>
|
||||
<PageSection>
|
||||
<div v-for="i in 30" :key="i" class="text-6xl uppercase">
|
||||
{{ $t('pages.blank.just_blank_page_with_title') }}
|
||||
</div>
|
||||
</PageSection>
|
||||
</PageBody>
|
||||
</PageWrapper>
|
||||
</template>
|
||||
Reference in New Issue
Block a user