mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
types(DropdownItem): add toggle method type
This commit is contained in:
parent
0438bdbc97
commit
5c1883f77c
@ -56,6 +56,7 @@ export default createComponent({
|
||||
},
|
||||
|
||||
methods: {
|
||||
// @exposed-api
|
||||
toggle(show = !this.showPopup, options = {}) {
|
||||
if (show === this.showPopup) {
|
||||
return;
|
||||
|
@ -158,7 +158,7 @@ export default {
|
||||
|
||||
| 方法名 | 说明 | 参数 | 返回值 |
|
||||
|------|------|------|------|
|
||||
| toggle | 切换菜单是否展示 | show: boolean | - |
|
||||
| toggle | 切换菜单展示状态,传`true`为显示,`false`为隐藏,不传参为取反 | show?: boolean | - |
|
||||
|
||||
### Option 数据结构
|
||||
|
||||
|
5
types/dropdown-item.d.ts
vendored
Normal file
5
types/dropdown-item.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
import { VanComponent } from './component';
|
||||
|
||||
export class DropdownItem extends VanComponent {
|
||||
toggle(show?: boolean): void;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user