create project vue

This commit is contained in:
Kittapath 2023-03-14 18:48:33 +07:00
parent 243cb707ee
commit 03b6076835
58 changed files with 15606 additions and 1 deletions

View file

@ -0,0 +1,13 @@
const Meta = () => import('@/modules/02_meta/views/Meta02View.vue')
export default [
{
path: '/meta02',
name: 'meta02',
component: Meta,
meta: {
Auth: true
// Key: [7]
}
}
]

View file

View file

@ -0,0 +1,15 @@
<template>
<div class="about">
<h1>This is an about META02</h1>
</div>
</template>
<style>
@media (min-width: 1024px) {
.about {
min-height: 100vh;
display: flex;
align-items: center;
}
}
</style>