mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 22:33:33 +09:00
first
This commit is contained in:
35
src/pages/starters/navbar-blank-page-1.vue
Normal file
35
src/pages/starters/navbar-blank-page-1.vue
Normal file
@@ -0,0 +1,35 @@
|
||||
<script setup lang="ts">
|
||||
import Layout from '/@src/layouts/navbar.vue'
|
||||
|
||||
/**
|
||||
* This is a Vue Component that will be
|
||||
* automatically mapped to a entry on vue-router.
|
||||
*
|
||||
* You will be able to access this page at http://localhost:3000/starters/navbar-blank-page-1
|
||||
* Page uri will match related path to src/pages folder
|
||||
*
|
||||
* Read more about routing:
|
||||
* @see /vite.config.ts
|
||||
* @see /src/router.ts
|
||||
*/
|
||||
|
||||
const pageTitle = useVueroContext<string>('page-title')
|
||||
onMounted(() => {
|
||||
pageTitle.value = 'Blank Page 1'
|
||||
})
|
||||
|
||||
useHead({
|
||||
title: 'Blank Page 1 - Navbar - Vuero',
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Layout>
|
||||
<!--
|
||||
Page content goes here
|
||||
|
||||
You can see pages content samples from
|
||||
files in /src/components/pages directory
|
||||
-->
|
||||
</Layout>
|
||||
</template>
|
||||
35
src/pages/starters/navbar-blank-page-2.vue
Normal file
35
src/pages/starters/navbar-blank-page-2.vue
Normal file
@@ -0,0 +1,35 @@
|
||||
<script setup lang="ts">
|
||||
import Layout from '/@src/layouts/navbar.vue'
|
||||
|
||||
/**
|
||||
* This is a Vue Component that will be
|
||||
* automatically mapped to a entry on vue-router.
|
||||
*
|
||||
* You will be able to access this page at http://localhost:3000/starters/navbar-blank-page-2
|
||||
* Page uri will match related path to src/pages folder
|
||||
*
|
||||
* Read more about routing:
|
||||
* @see /vite.config.ts
|
||||
* @see /src/router.ts
|
||||
*/
|
||||
|
||||
const pageTitle = useVueroContext<string>('page-title')
|
||||
onMounted(() => {
|
||||
pageTitle.value = 'Blank Page 2'
|
||||
})
|
||||
|
||||
useHead({
|
||||
title: 'Blank Page 2 - Navbar - Vuero',
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Layout theme="fade">
|
||||
<!--
|
||||
Page content goes here
|
||||
|
||||
You can see pages content samples from
|
||||
files in /src/components/pages directory
|
||||
-->
|
||||
</Layout>
|
||||
</template>
|
||||
35
src/pages/starters/navbar-blank-page-3.vue
Normal file
35
src/pages/starters/navbar-blank-page-3.vue
Normal file
@@ -0,0 +1,35 @@
|
||||
<script setup lang="ts">
|
||||
import Layout from '/@src/layouts/navbar.vue'
|
||||
|
||||
/**
|
||||
* This is a Vue Component that will be
|
||||
* automatically mapped to a entry on vue-router.
|
||||
*
|
||||
* You will be able to access this page at http://localhost:3000/starters/navbar-blank-page-3
|
||||
* Page uri will match related path to src/pages folder
|
||||
*
|
||||
* Read more about routing:
|
||||
* @see /vite.config.ts
|
||||
* @see /src/router.ts
|
||||
*/
|
||||
|
||||
const pageTitle = useVueroContext<string>('page-title')
|
||||
onMounted(() => {
|
||||
pageTitle.value = 'Blank Page 3'
|
||||
})
|
||||
|
||||
useHead({
|
||||
title: 'Blank Page 3 - Navbar - Vuero',
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Layout theme="colored">
|
||||
<!--
|
||||
Page content goes here
|
||||
|
||||
You can see pages content samples from
|
||||
files in /src/components/pages directory
|
||||
-->
|
||||
</Layout>
|
||||
</template>
|
||||
35
src/pages/starters/navbar-blank-page-4.vue
Normal file
35
src/pages/starters/navbar-blank-page-4.vue
Normal file
@@ -0,0 +1,35 @@
|
||||
<script setup lang="ts">
|
||||
import Layout from '/@src/layouts/navbar.vue'
|
||||
|
||||
/**
|
||||
* This is a Vue Component that will be
|
||||
* automatically mapped to a entry on vue-router.
|
||||
*
|
||||
* You will be able to access this page at http://localhost:3000/starters/navbar-blank-page-4
|
||||
* Page uri will match related path to src/pages folder
|
||||
*
|
||||
* Read more about routing:
|
||||
* @see /vite.config.ts
|
||||
* @see /src/router.ts
|
||||
*/
|
||||
|
||||
const pageTitle = useVueroContext<string>('page-title')
|
||||
onMounted(() => {
|
||||
pageTitle.value = 'Blank Page 4'
|
||||
})
|
||||
|
||||
useHead({
|
||||
title: 'Blank Page 4 - Navbar - Vuero',
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Layout>
|
||||
<!--
|
||||
Page content goes here
|
||||
|
||||
You can see pages content samples from
|
||||
files in /src/components/pages directory
|
||||
-->
|
||||
</Layout>
|
||||
</template>
|
||||
35
src/pages/starters/navbar-blank-page-5.vue
Normal file
35
src/pages/starters/navbar-blank-page-5.vue
Normal file
@@ -0,0 +1,35 @@
|
||||
<script setup lang="ts">
|
||||
import Layout from '/@src/layouts/navbar.vue'
|
||||
|
||||
/**
|
||||
* This is a Vue Component that will be
|
||||
* automatically mapped to a entry on vue-router.
|
||||
*
|
||||
* You will be able to access this page at http://localhost:3000/starters/navbar-blank-page-5
|
||||
* Page uri will match related path to src/pages folder
|
||||
*
|
||||
* Read more about routing:
|
||||
* @see /vite.config.ts
|
||||
* @see /src/router.ts
|
||||
*/
|
||||
|
||||
const pageTitle = useVueroContext<string>('page-title')
|
||||
onMounted(() => {
|
||||
pageTitle.value = 'Blank Page 5'
|
||||
})
|
||||
|
||||
useHead({
|
||||
title: 'Blank Page 5 - Navbar - Vuero',
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Layout theme="colored">
|
||||
<!--
|
||||
Page content goes here
|
||||
|
||||
You can see pages content samples from
|
||||
files in /src/components/pages directory
|
||||
-->
|
||||
</Layout>
|
||||
</template>
|
||||
35
src/pages/starters/navbar-blank-page-6.vue
Normal file
35
src/pages/starters/navbar-blank-page-6.vue
Normal file
@@ -0,0 +1,35 @@
|
||||
<script setup lang="ts">
|
||||
import Layout from '/@src/layouts/navsearch.vue'
|
||||
|
||||
/**
|
||||
* This is a Vue Component that will be
|
||||
* automatically mapped to a entry on vue-router.
|
||||
*
|
||||
* You will be able to access this page at http://localhost:3000/starters/navbar-blank-page-6
|
||||
* Page uri will match related path to src/pages folder
|
||||
*
|
||||
* Read more about routing:
|
||||
* @see /vite.config.ts
|
||||
* @see /src/router.ts
|
||||
*/
|
||||
|
||||
const pageTitle = useVueroContext<string>('page-title')
|
||||
onMounted(() => {
|
||||
pageTitle.value = 'Blank Page 6'
|
||||
})
|
||||
|
||||
useHead({
|
||||
title: 'Blank Page 6 - Navbar - Vuero',
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Layout>
|
||||
<!--
|
||||
Page content goes here
|
||||
|
||||
You can see pages content samples from
|
||||
files in /src/components/pages directory
|
||||
-->
|
||||
</Layout>
|
||||
</template>
|
||||
35
src/pages/starters/navbar-blank-page-7.vue
Normal file
35
src/pages/starters/navbar-blank-page-7.vue
Normal file
@@ -0,0 +1,35 @@
|
||||
<script setup lang="ts">
|
||||
import Layout from '/@src/layouts/navsearch.vue'
|
||||
|
||||
/**
|
||||
* This is a Vue Component that will be
|
||||
* automatically mapped to a entry on vue-router.
|
||||
*
|
||||
* You will be able to access this page at http://localhost:3000/starters/navbar-blank-page-7
|
||||
* Page uri will match related path to src/pages folder
|
||||
*
|
||||
* Read more about routing:
|
||||
* @see /vite.config.ts
|
||||
* @see /src/router.ts
|
||||
*/
|
||||
|
||||
const pageTitle = useVueroContext<string>('page-title')
|
||||
onMounted(() => {
|
||||
pageTitle.value = 'Blank Page 7'
|
||||
})
|
||||
|
||||
useHead({
|
||||
title: 'Blank Page 7 - Navbar - Vuero',
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Layout theme="center">
|
||||
<!--
|
||||
Page content goes here
|
||||
|
||||
You can see pages content samples from
|
||||
files in /src/components/pages directory
|
||||
-->
|
||||
</Layout>
|
||||
</template>
|
||||
35
src/pages/starters/navbar-blank-page-8.vue
Normal file
35
src/pages/starters/navbar-blank-page-8.vue
Normal file
@@ -0,0 +1,35 @@
|
||||
<script setup lang="ts">
|
||||
import Layout from '/@src/layouts/navsearch.vue'
|
||||
|
||||
/**
|
||||
* This is a Vue Component that will be
|
||||
* automatically mapped to a entry on vue-router.
|
||||
*
|
||||
* You will be able to access this page at http://localhost:3000/starters/navbar-blank-page-8
|
||||
* Page uri will match related path to src/pages folder
|
||||
*
|
||||
* Read more about routing:
|
||||
* @see /vite.config.ts
|
||||
* @see /src/router.ts
|
||||
*/
|
||||
|
||||
const pageTitle = useVueroContext<string>('page-title')
|
||||
onMounted(() => {
|
||||
pageTitle.value = 'Blank Page 8'
|
||||
})
|
||||
|
||||
useHead({
|
||||
title: 'Blank Page 8 - Navbar - Vuero',
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Layout theme="fade">
|
||||
<!--
|
||||
Page content goes here
|
||||
|
||||
You can see pages content samples from
|
||||
files in /src/components/pages directory
|
||||
-->
|
||||
</Layout>
|
||||
</template>
|
||||
35
src/pages/starters/sidebar-blank-page-1.vue
Normal file
35
src/pages/starters/sidebar-blank-page-1.vue
Normal file
@@ -0,0 +1,35 @@
|
||||
<script setup lang="ts">
|
||||
import Layout from '/@src/layouts/sidebar.vue'
|
||||
|
||||
/**
|
||||
* This is a Vue Component that will be
|
||||
* automatically mapped to a entry on vue-router.
|
||||
*
|
||||
* You will be able to access this page at http://localhost:3000/starters/sidebar-blank-page-1
|
||||
* Page uri will match related path to src/pages folder
|
||||
*
|
||||
* Read more about routing:
|
||||
* @see /vite.config.ts
|
||||
* @see /src/router.ts
|
||||
*/
|
||||
|
||||
const pageTitle = useVueroContext<string>('page-title')
|
||||
onMounted(() => {
|
||||
pageTitle.value = 'Blank Page 1'
|
||||
})
|
||||
|
||||
useHead({
|
||||
title: 'Blank Page 1 - Sidebar - Vuero',
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Layout>
|
||||
<!--
|
||||
Page content goes here
|
||||
|
||||
You can see pages content samples from
|
||||
files in /src/components/pages directory
|
||||
-->
|
||||
</Layout>
|
||||
</template>
|
||||
35
src/pages/starters/sidebar-blank-page-2.vue
Normal file
35
src/pages/starters/sidebar-blank-page-2.vue
Normal file
@@ -0,0 +1,35 @@
|
||||
<script setup lang="ts">
|
||||
import Layout from '/@src/layouts/sidebar.vue'
|
||||
|
||||
/**
|
||||
* This is a Vue Component that will be
|
||||
* automatically mapped to a entry on vue-router.
|
||||
*
|
||||
* You will be able to access this page at http://localhost:3000/starters/sidebar-blank-page-2
|
||||
* Page uri will match related path to src/pages folder
|
||||
*
|
||||
* Read more about routing:
|
||||
* @see /vite.config.ts
|
||||
* @see /src/router.ts
|
||||
*/
|
||||
|
||||
const pageTitle = useVueroContext<string>('page-title')
|
||||
onMounted(() => {
|
||||
pageTitle.value = 'Blank Page 2'
|
||||
})
|
||||
|
||||
useHead({
|
||||
title: 'Blank Page 2 - Sidebar - Vuero',
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Layout theme="curved">
|
||||
<!--
|
||||
Page content goes here
|
||||
|
||||
You can see pages content samples from
|
||||
files in /src/components/pages directory
|
||||
-->
|
||||
</Layout>
|
||||
</template>
|
||||
35
src/pages/starters/sidebar-blank-page-3.vue
Normal file
35
src/pages/starters/sidebar-blank-page-3.vue
Normal file
@@ -0,0 +1,35 @@
|
||||
<script setup lang="ts">
|
||||
import Layout from '/@src/layouts/sidebar.vue'
|
||||
|
||||
/**
|
||||
* This is a Vue Component that will be
|
||||
* automatically mapped to a entry on vue-router.
|
||||
*
|
||||
* You will be able to access this page at http://localhost:3000/starters/sidebar-blank-page-3
|
||||
* Page uri will match related path to src/pages folder
|
||||
*
|
||||
* Read more about routing:
|
||||
* @see /vite.config.ts
|
||||
* @see /src/router.ts
|
||||
*/
|
||||
|
||||
const pageTitle = useVueroContext<string>('page-title')
|
||||
onMounted(() => {
|
||||
pageTitle.value = 'Blank Page 3'
|
||||
})
|
||||
|
||||
useHead({
|
||||
title: 'Blank Page 3 - Sidebar - Vuero',
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Layout theme="color">
|
||||
<!--
|
||||
Page content goes here
|
||||
|
||||
You can see pages content samples from
|
||||
files in /src/components/pages directory
|
||||
-->
|
||||
</Layout>
|
||||
</template>
|
||||
35
src/pages/starters/sidebar-blank-page-4.vue
Normal file
35
src/pages/starters/sidebar-blank-page-4.vue
Normal file
@@ -0,0 +1,35 @@
|
||||
<script setup lang="ts">
|
||||
import Layout from '/@src/layouts/sidebar.vue'
|
||||
|
||||
/**
|
||||
* This is a Vue Component that will be
|
||||
* automatically mapped to a entry on vue-router.
|
||||
*
|
||||
* You will be able to access this page at http://localhost:3000/starters/sidebar-blank-page-4
|
||||
* Page uri will match related path to src/pages folder
|
||||
*
|
||||
* Read more about routing:
|
||||
* @see /vite.config.ts
|
||||
* @see /src/router.ts
|
||||
*/
|
||||
|
||||
const pageTitle = useVueroContext<string>('page-title')
|
||||
onMounted(() => {
|
||||
pageTitle.value = 'Blank Page 4'
|
||||
})
|
||||
|
||||
useHead({
|
||||
title: 'Blank Page 4 - Sidebar - Vuero',
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Layout theme="color-curved">
|
||||
<!--
|
||||
Page content goes here
|
||||
|
||||
You can see pages content samples from
|
||||
files in /src/components/pages directory
|
||||
-->
|
||||
</Layout>
|
||||
</template>
|
||||
35
src/pages/starters/sidebar-blank-page-5.vue
Normal file
35
src/pages/starters/sidebar-blank-page-5.vue
Normal file
@@ -0,0 +1,35 @@
|
||||
<script setup lang="ts">
|
||||
import Layout from '/@src/layouts/sidebar.vue'
|
||||
|
||||
/**
|
||||
* This is a Vue Component that will be
|
||||
* automatically mapped to a entry on vue-router.
|
||||
*
|
||||
* You will be able to access this page at http://localhost:3000/starters/sidebar-blank-page-5
|
||||
* Page uri will match related path to src/pages folder
|
||||
*
|
||||
* Read more about routing:
|
||||
* @see /vite.config.ts
|
||||
* @see /src/router.ts
|
||||
*/
|
||||
|
||||
const pageTitle = useVueroContext<string>('page-title')
|
||||
onMounted(() => {
|
||||
pageTitle.value = 'Blank Page 5'
|
||||
})
|
||||
|
||||
useHead({
|
||||
title: 'Blank Page 5 - Sidebar - Vuero',
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Layout theme="labels">
|
||||
<!--
|
||||
Page content goes here
|
||||
|
||||
You can see pages content samples from
|
||||
files in /src/components/pages directory
|
||||
-->
|
||||
</Layout>
|
||||
</template>
|
||||
35
src/pages/starters/sidebar-blank-page-6.vue
Normal file
35
src/pages/starters/sidebar-blank-page-6.vue
Normal file
@@ -0,0 +1,35 @@
|
||||
<script setup lang="ts">
|
||||
import Layout from '/@src/layouts/sidebar.vue'
|
||||
|
||||
/**
|
||||
* This is a Vue Component that will be
|
||||
* automatically mapped to a entry on vue-router.
|
||||
*
|
||||
* You will be able to access this page at http://localhost:3000/starters/sidebar-blank-page-6
|
||||
* Page uri will match related path to src/pages folder
|
||||
*
|
||||
* Read more about routing:
|
||||
* @see /vite.config.ts
|
||||
* @see /src/router.ts
|
||||
*/
|
||||
|
||||
const pageTitle = useVueroContext<string>('page-title')
|
||||
onMounted(() => {
|
||||
pageTitle.value = 'Blank Page 6'
|
||||
})
|
||||
|
||||
useHead({
|
||||
title: 'Blank Page 6 - Sidebar - Vuero',
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Layout theme="labels-hover">
|
||||
<!--
|
||||
Page content goes here
|
||||
|
||||
You can see pages content samples from
|
||||
files in /src/components/pages directory
|
||||
-->
|
||||
</Layout>
|
||||
</template>
|
||||
35
src/pages/starters/sidebar-blank-page-7.vue
Normal file
35
src/pages/starters/sidebar-blank-page-7.vue
Normal file
@@ -0,0 +1,35 @@
|
||||
<script setup lang="ts">
|
||||
import Layout from '/@src/layouts/sidebar.vue'
|
||||
|
||||
/**
|
||||
* This is a Vue Component that will be
|
||||
* automatically mapped to a entry on vue-router.
|
||||
*
|
||||
* You will be able to access this page at http://localhost:3000/starters/sidebar-blank-page-7
|
||||
* Page uri will match related path to src/pages folder
|
||||
*
|
||||
* Read more about routing:
|
||||
* @see /vite.config.ts
|
||||
* @see /src/router.ts
|
||||
*/
|
||||
|
||||
const pageTitle = useVueroContext<string>('page-title')
|
||||
onMounted(() => {
|
||||
pageTitle.value = 'Blank Page 7'
|
||||
})
|
||||
|
||||
useHead({
|
||||
title: 'Blank Page 7 - Sidebar - Vuero',
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Layout theme="float">
|
||||
<!--
|
||||
Page content goes here
|
||||
|
||||
You can see pages content samples from
|
||||
files in /src/components/pages directory
|
||||
-->
|
||||
</Layout>
|
||||
</template>
|
||||
35
src/pages/starters/sideblock-blank-page-1.vue
Normal file
35
src/pages/starters/sideblock-blank-page-1.vue
Normal file
@@ -0,0 +1,35 @@
|
||||
<script setup lang="ts">
|
||||
import Layout from '/@src/layouts/sideblock.vue'
|
||||
|
||||
/**
|
||||
* This is a Vue Component that will be
|
||||
* automatically mapped to a entry on vue-router.
|
||||
*
|
||||
* You will be able to access this page at http://localhost:3000/starters/sideblock-blank-page-1
|
||||
* Page uri will match related path to src/pages folder
|
||||
*
|
||||
* Read more about routing:
|
||||
* @see /vite.config.ts
|
||||
* @see /src/router.ts
|
||||
*/
|
||||
|
||||
const pageTitle = useVueroContext<string>('page-title')
|
||||
onMounted(() => {
|
||||
pageTitle.value = 'Blank Page 1'
|
||||
})
|
||||
|
||||
useHead({
|
||||
title: 'Blank Page 1 - Sideblock - Vuero',
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Layout open-on-mounted>
|
||||
<!--
|
||||
Page content goes here
|
||||
|
||||
You can see pages content samples from
|
||||
files in /src/components/pages directory
|
||||
-->
|
||||
</Layout>
|
||||
</template>
|
||||
38
src/pages/starters/sideblock-blank-page-2.vue
Normal file
38
src/pages/starters/sideblock-blank-page-2.vue
Normal file
@@ -0,0 +1,38 @@
|
||||
<script setup lang="ts">
|
||||
import Layout from '/@src/layouts/sideblock.vue'
|
||||
|
||||
/**
|
||||
* This is a Vue Component that will be
|
||||
* automatically mapped to a entry on vue-router.
|
||||
*
|
||||
* You will be able to access this page at http://localhost:3000/starters/sideblock-blank-page-1
|
||||
* Page uri will match related path to src/pages folder
|
||||
*
|
||||
* Read more about routing:
|
||||
* @see /vite.config.ts
|
||||
* @see /src/router.ts
|
||||
*/
|
||||
|
||||
const pageTitle = useVueroContext<string>('page-title')
|
||||
onMounted(() => {
|
||||
pageTitle.value = 'Blank Page 2'
|
||||
})
|
||||
|
||||
useHead({
|
||||
title: 'Blank Page 2 - Sideblock - Vuero',
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Layout
|
||||
theme="curved"
|
||||
open-on-mounted
|
||||
>
|
||||
<!--
|
||||
Page content goes here
|
||||
|
||||
You can see pages content samples from
|
||||
files in /src/components/pages directory
|
||||
-->
|
||||
</Layout>
|
||||
</template>
|
||||
38
src/pages/starters/sideblock-blank-page-3.vue
Normal file
38
src/pages/starters/sideblock-blank-page-3.vue
Normal file
@@ -0,0 +1,38 @@
|
||||
<script setup lang="ts">
|
||||
import Layout from '/@src/layouts/sideblock.vue'
|
||||
|
||||
/**
|
||||
* This is a Vue Component that will be
|
||||
* automatically mapped to a entry on vue-router.
|
||||
*
|
||||
* You will be able to access this page at http://localhost:3000/starters/sideblock-blank-page-1
|
||||
* Page uri will match related path to src/pages folder
|
||||
*
|
||||
* Read more about routing:
|
||||
* @see /vite.config.ts
|
||||
* @see /src/router.ts
|
||||
*/
|
||||
|
||||
const pageTitle = useVueroContext<string>('page-title')
|
||||
onMounted(() => {
|
||||
pageTitle.value = 'Blank Page 3'
|
||||
})
|
||||
|
||||
useHead({
|
||||
title: 'Blank Page 3 - Sideblock - Vuero',
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Layout
|
||||
theme="color"
|
||||
open-on-mounted
|
||||
>
|
||||
<!--
|
||||
Page content goes here
|
||||
|
||||
You can see pages content samples from
|
||||
files in /src/components/pages directory
|
||||
-->
|
||||
</Layout>
|
||||
</template>
|
||||
38
src/pages/starters/sideblock-blank-page-4.vue
Normal file
38
src/pages/starters/sideblock-blank-page-4.vue
Normal file
@@ -0,0 +1,38 @@
|
||||
<script setup lang="ts">
|
||||
import Layout from '/@src/layouts/sideblock.vue'
|
||||
|
||||
/**
|
||||
* This is a Vue Component that will be
|
||||
* automatically mapped to a entry on vue-router.
|
||||
*
|
||||
* You will be able to access this page at http://localhost:3000/starters/sideblock-blank-page-1
|
||||
* Page uri will match related path to src/pages folder
|
||||
*
|
||||
* Read more about routing:
|
||||
* @see /vite.config.ts
|
||||
* @see /src/router.ts
|
||||
*/
|
||||
|
||||
const pageTitle = useVueroContext<string>('page-title')
|
||||
onMounted(() => {
|
||||
pageTitle.value = 'Blank Page 4'
|
||||
})
|
||||
|
||||
useHead({
|
||||
title: 'Blank Page 4 - Sideblock - Vuero',
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Layout
|
||||
theme="color-curved"
|
||||
open-on-mounted
|
||||
>
|
||||
<!--
|
||||
Page content goes here
|
||||
|
||||
You can see pages content samples from
|
||||
files in /src/components/pages directory
|
||||
-->
|
||||
</Layout>
|
||||
</template>
|
||||
Reference in New Issue
Block a user