mirror of
https://github.com/antd-tiny-vue/antd-tiny-vue.git
synced 2025-01-10 08:09:09 +08:00
Compare commits
3 Commits
74bb3d43c2
...
6f22f963b4
Author | SHA1 | Date | |
---|---|---|---|
6f22f963b4 | |||
1e19c7fac2 | |||
a2dd8a0336 |
13
components/button/button.tsx
Normal file
13
components/button/button.tsx
Normal file
@ -0,0 +1,13 @@
|
||||
import { defineComponent } from 'vue'
|
||||
|
||||
const Button = defineComponent({
|
||||
name: 'AButton',
|
||||
props: {},
|
||||
setup(props, { slots }) {
|
||||
return () => {
|
||||
return <button>{slots.default?.()}</button>
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
export default Button
|
8
components/button/index.ts
Normal file
8
components/button/index.ts
Normal file
@ -0,0 +1,8 @@
|
||||
import type { App } from 'vue'
|
||||
import Button from './button'
|
||||
|
||||
Button.install = function (app: App) {
|
||||
app.component(Button.name, Button)
|
||||
}
|
||||
|
||||
export default Button
|
1
components/components.ts
Normal file
1
components/components.ts
Normal file
@ -0,0 +1 @@
|
||||
export { default as Button } from './button'
|
@ -1,7 +1,13 @@
|
||||
export {}
|
||||
import type { App } from 'vue'
|
||||
import * as components from './components'
|
||||
|
||||
const aaa = () => {
|
||||
// TODO
|
||||
export default {
|
||||
install(app: App) {
|
||||
for (const componentsKey in components) {
|
||||
const component = (components as any)[componentsKey]
|
||||
if (component.install) {
|
||||
app.use(component)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export default aaa
|
||||
|
@ -77,6 +77,6 @@ export function useToken(): [ComputedRef<Theme<SeedToken, MapToken>>, ComputedRe
|
||||
return [mergedTheme, computed(() => cacheToken.value?.[0]), computed(() => (designTokenContext.hashed ? cacheToken.value?.[1] : ''))]
|
||||
}
|
||||
|
||||
export type UseComponentStyleResult = [(node: VNodeChild) => VNodeChild, string]
|
||||
export type UseComponentStyleResult = [(node: VNodeChild) => VNodeChild, ComputedRef<string>]
|
||||
|
||||
export type GenerateStyle<ComponentToken extends object = AliasToken, ReturnType = CSSInterpolation> = (token: ComponentToken) => ReturnType
|
||||
|
@ -92,7 +92,7 @@ export default function genComponentStyleHook<ComponentName extends OverrideComp
|
||||
flush(component, mergedComponentToken)
|
||||
return [genCommonStyle(token.value, prefixCls.value), styleInterpolation]
|
||||
}),
|
||||
hashId.value
|
||||
hashId
|
||||
]
|
||||
}
|
||||
}
|
||||
|
@ -2,11 +2,13 @@ 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'
|
||||
import Antd from '../../../components'
|
||||
|
||||
export default {
|
||||
...DefaultTheme,
|
||||
enhanceApp(ctx) {
|
||||
DefaultTheme.enhanceApp?.(ctx)
|
||||
ctx.app.component('Demo', AntdTheme)
|
||||
ctx.app.use(Antd)
|
||||
}
|
||||
} as Theme
|
||||
|
@ -10,7 +10,9 @@ title: 基础按钮
|
||||
<script lang="ts" setup></script>
|
||||
|
||||
<template>
|
||||
<div></div>
|
||||
<div>
|
||||
<a-button>这是按钮</a-button>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped></style>
|
||||
|
Loading…
Reference in New Issue
Block a user