Compare commits

...

2 Commits

Author SHA1 Message Date
Sun
d2455554a2
types(Popover): PopoverAction type allow extra properties (#9554) 2021-09-23 17:29:01 +08:00
neverland
b45ef47929
build: fix deploy site action (#9555) 2021-09-23 17:24:37 +08:00
2 changed files with 3 additions and 2 deletions

View File

@ -4,7 +4,7 @@ on:
push:
branches: [dev]
paths:
- 'docs/**'
- 'packages/vant/docs/**'
jobs:
build-and-deploy:
@ -25,5 +25,5 @@ jobs:
uses: JamesIves/github-pages-deploy-action@4.1.1
with:
branch: gh-pages
folder: packages/vant/site
folder: packages/vant/site-dist
target-folder: v3

View File

@ -63,6 +63,7 @@ export type PopoverAction = {
color?: string;
disabled?: boolean;
className?: string;
[key: PropertyKey]: any;
};
export default defineComponent({