docs: update

This commit is contained in:
Benjamin Canac
2021-11-24 11:48:28 +01:00
parent bc72f63270
commit 40cb59e660
4 changed files with 215 additions and 32 deletions

View File

@@ -1,6 +1,6 @@
<template>
<UCard v-if="component" footer-class="px-4 py-4 sm:px-6">
<div class="flex justify-center">
<UCard v-if="component" class="relative flex flex-col" body-class="px-4 py-5 sm:p-6 relative" footer-class="px-4 py-4 sm:px-6 flex-1 lg:overflow-y-auto" style="max-height: calc(100vh - 10rem);">
<div class="flex justify-center sticky top-0">
<component :is="is" v-bind="boundProps" />
</div>
@@ -9,6 +9,7 @@
<UInputGroup
v-for="prop of props"
:key="prop.key"
class="capitalize"
:name="prop.key"
:label="prop.key"
>
@@ -74,7 +75,7 @@ const refProps = Object.entries(componentProps).map(([key, prop]) => {
let values
if (prop.validator) {
const result = prop.validator.toString().match(/\[.*\]/g, '')[0]
values = JSON.parse(result.replace(/'/g, '"'))
values = JSON.parse(result.replace(/'/g, '"')).filter(Boolean)
}
if (value) {

View File

@@ -93,8 +93,20 @@ export default defineNuxtConfig({
})</code>
</pre>
<NuxtLink to="/examples" class="font-bold text-2xl text-tw-gray-900 hover:underline block">
Examples
</NuxtLink>
<p>- `unocss.shortcuts`. Defaults to `[]`.</p>
<p>Define UnoCSS shortcuts: https://github.com/antfu/unocss#shortcuts.</p>
<p>- `unocss.rules`. Defaults to `[]`.</p>
<p>Customize UnoCSS rules: https://github.com/antfu/unocss#custom-rules.</p>
<p>- `unocss.variants`. Defaults to `[]`.</p>
<p>Customize UnoCSS variants: https://github.com/antfu/unocss#custom-variants.</p>
<p>- `unocss.theme`. Defaults to `{}`.</p>
<p>Extend UnoCSS theme: https://github.com/antfu/unocss#extend-theme.</p>
</div>
</template>

165
docs/pages/migration.vue Normal file
View File

@@ -0,0 +1,165 @@
<template>
<div class="space-y-4">
<div class="pb-10 border-b border-tw-gray-200 mb-10">
<div>
<h1 class="inline-block text-3xl font-extrabold text-tw-gray-900 tracking-tight">
Migration
</h1>
</div>
<p class="mt-1 text-lg text-tw-gray-500">
Check out the components that have been migrated to Vue3 coming from `@nuxthq/volta-ui`.
</p>
</div>
<UCard body-class>
<table class="min-w-full divide-y divide-tw-gray-200">
<thead class="bg-tw-gray-50">
<tr>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-tw-gray-500 uppercase tracking-wider">
Component
</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-tw-gray-500 uppercase tracking-wider">
Ready?
</th>
</tr>
</thead>
<tbody>
<tr v-for="(component, index) of components" :key="index" :class="index % 2 === 0 ? 'bg-tw-white' : 'bg-tw-gray-50'">
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-tw-gray-900">
<NuxtLink :to="component.to" class="hover:underline">
{{ component.label }}
</NuxtLink>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-tw-gray-500">
<span v-if="component.ready"></span>
<span v-else></span>
</td>
</tr>
</tbody>
</table>
</UCard>
</div>
</template>
<script setup>
const components = [
{
label: 'Avatar',
to: '/components/Avatar'
},
{
label: 'AvatarGroup',
to: '/components/AvatarGroup'
},
{
label: 'Badge',
to: '/components/Badge'
},
{
label: 'Button',
to: '/components/Button',
ready: true
},
{
label: 'Dropdown',
to: '/components/Dropdown',
ready: true
},
{
label: 'Icon',
to: '/components/Icon',
ready: true
},
{
label: 'Link',
to: '/components/Link'
},
{
label: 'Toggle',
to: '/components/Toggle'
},
{
label: 'Alert',
to: '/components/Alert'
},
{
label: 'Checkbox',
to: '/components/Checkbox'
},
{
label: 'Input',
to: '/components/Input',
ready: true
},
{
label: 'InputGroup',
to: '/components/InputGroup'
},
{
label: 'Radio',
to: '/components/Radio'
},
{
label: 'RadioGroup',
to: '/components/RadioGroup'
},
{
label: 'Select',
to: '/components/Select'
},
{
label: 'SelectCustom',
to: '/components/SelectCustom'
},
{
label: 'Textarea',
to: '/components/Textarea',
ready: true
},
{
label: 'Card',
to: '/components/Card',
ready: true
},
{
label: 'Container',
to: '/components/Container',
ready: true
},
{
label: 'Pills',
to: '/components/Pills'
},
{
label: 'Tabs',
to: '/components/Tabs'
},
{
label: 'VerticalNavigation',
to: '/components/VerticalNavigation'
},
{
label: 'Modal',
to: '/components/Modal',
ready: true
},
{
label: 'Notification',
to: '/components/Notification'
},
{
label: 'Popover',
to: '/components/Popover',
ready: true
},
{
label: 'Slideover',
to: '/components/Slideover'
},
{
label: 'Tooltip',
to: '/components/Tooltip'
}
]
</script>