Compare commits

...

3 Commits

Author SHA1 Message Date
7bc8ec1094 chore: change docs build 2023-04-17 21:07:30 +08:00
08f17ce876 chore: change postion 2023-04-17 21:03:25 +08:00
fe029c5a0e chore: change docs 2023-04-17 21:03:02 +08:00
6 changed files with 488 additions and 478 deletions

View File

@ -0,0 +1,17 @@
<script lang="ts" setup>
import { onMounted, shallowRef } from 'vue'
const comp = shallowRef()
onMounted(async () => {
const { AntdTheme } = await import('vite-plugin-vitepress-demo/theme')
comp.value = AntdTheme
})
</script>
<template>
<ClientOnly>
<component v-bind="$attrs" :is="comp"></component>
</ClientOnly>
</template>
<style scoped></style>

View File

@ -10,20 +10,19 @@ const baseSrc = fileURLToPath(new URL('./', import.meta.url))
export default defineConfig({
rewrites: getRewrites(),
mpa: true,
lang: 'en-US',
ignoreDeadLinks: true,
locales: {
'zh-CN': {
lang: 'zh-CN',
title: 'vue3组件库站点',
title: 'Antd Tiny Vue',
label: '简体中文',
description: 'vue3组件库站点',
themeConfig: getZhCNConfig()
},
root: {
lang: 'en-US',
title: 'vue3 component library site',
title: 'Antd Tiny Vue',
label: 'English',
description: 'vue3 component library site',
themeConfig: getEnUSConfig()

View File

@ -1,15 +1,17 @@
import type { Theme } from 'vitepress'
// eslint-disable-next-line import/no-named-as-default
import DefaultTheme from 'vitepress/theme'
import { AntdTheme } from 'vite-plugin-vitepress-demo/theme'
// @ts-expect-error this is a local module
import Antd from 'antd-tiny-vue'
import AntdTheme from '../components/demo.vue'
export default {
...DefaultTheme,
enhanceApp(ctx) {
async enhanceApp(ctx) {
DefaultTheme.enhanceApp?.(ctx)
ctx.app.component('Demo', AntdTheme)
ctx.app.use(Antd)
// @ts-expect-error this is a local module
if (!import.meta.env.SSR) {
// @ts-expect-error this is a local module
const Antd = (await import('antd-tiny-vue')).default
ctx.app.use(Antd)
}
}
} as Theme

View File

@ -20,7 +20,6 @@ const genSharedButtonStyle: GenerateStyle<ButtonToken, CSSObject> = (
token
): CSSObject => {
const { componentCls, iconCls } = token
return {
[componentCls]: {
outline: 'none',

View File

@ -1,6 +1,7 @@
{
"name": "antd-tiny-vue",
"version": "1.0.0",
"packageManager": "pnpm@8.2.0",
"description": "this is a tiny antd components for vue3",
"keywords": [
"antd",
@ -20,12 +21,11 @@
"build:site": "vitepress build",
"preview": "vitepress preview"
},
"packageManager": "pnpm@8.2.0",
"dependencies": {
"@ant-design/colors": "^7.0.0",
"@antd-tiny-vue/cssinjs": "^0.0.4",
"@antd-tiny-vue/cssinjs": "0.0.8",
"@ctrl/tinycolor": "^3.6.0",
"@v-c/utils": "^0.0.19",
"@v-c/utils": "^0.0.22",
"@vueuse/core": "^9.13.0",
"vue": "^3.2.47"
},
@ -44,7 +44,7 @@
"typescript": "^4.9.5",
"unbuild": "^1.1.2",
"vite": "^4.2.1",
"vite-plugin-vitepress-demo": "2.0.0-beta.28",
"vite-plugin-vitepress-demo": "2.0.0-beta.29",
"vitepress": "1.0.0-alpha.69",
"vitest": "^0.28.5"
},

File diff suppressed because it is too large Load Diff