mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 16:03:33 +09:00
65 lines
1.3 KiB
Vue
65 lines
1.3 KiB
Vue
<script setup lang="ts">
|
|
import { VIMaskInputMeta } from '/@src/data/documentation/components-meta'
|
|
|
|
const markdownContainer = ref<HTMLElement>()
|
|
const toc = useMarkdownToc(markdownContainer)
|
|
|
|
const pageTitle = useVueroContext<string>('page-title')
|
|
onMounted(() => {
|
|
pageTitle.value = 'VIMaskInput'
|
|
})
|
|
|
|
useHead({
|
|
title: 'VIMaskInput - Addons - Vuero',
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<VBreadcrumb
|
|
with-icons
|
|
separator="bullet"
|
|
:items="[
|
|
{
|
|
label: 'Vuero',
|
|
hideLabel: true,
|
|
icon: 'lucide:home',
|
|
to: '/',
|
|
},
|
|
{
|
|
label: 'Components',
|
|
to: '/components/',
|
|
},
|
|
{
|
|
label: 'Addons',
|
|
},
|
|
{
|
|
label: 'VIMaskInput',
|
|
to: '/components/addons/imask-input',
|
|
},
|
|
]"
|
|
/>
|
|
|
|
<div class="columns is-multiline">
|
|
<div
|
|
ref="markdownContainer"
|
|
:class="[toc.length > 0 ? 'is-9' : 'is-12']"
|
|
class="column doc-column stay-focus-container"
|
|
>
|
|
<VImaskInputDocumentation />
|
|
|
|
<DocumentationMeta
|
|
name="VIMaskInput"
|
|
:meta="VIMaskInputMeta"
|
|
/>
|
|
</div>
|
|
<div
|
|
v-if="toc.length"
|
|
class="column is-3 toc-column"
|
|
>
|
|
<DocumentationToc :toc="toc" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|