/**
 * Minified by jsDelivr using Terser v5.39.0.
 * Original file: /npm/@common-intellisense/vuetify3@0.0.6/dist/index.js
 *
 * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files
 */
var Ti={vuetify3:[{name:"v-click-outside",description:"The v-click-outside directive calls a function when something outside of the target element is clicked on. This is used internally by components like v-menu and v-dialog.",description_zh:"v-click-outside 指令在单击目标元素之外的内容时调用函数。这在内部由 v-menu 和 v-dialog 等组件使用。",documentationType:"  | ((e: MouseEvent) => void)\n    | {\n        handler: (e: MouseEvent) => void\n        closeConditional: (e: Event) => boolean\n        include: () => HTMLElement[]\n      }",params:[],link:"https://vuetifyjs.com/zh-Hans/directives/click-outside/",link_zh:"https://vuetifyjs.com/zh-Hans/directives/click-outside/"},{name:"v-intersect",description:"The v-intersect directive utilizes the Intersection Observer API. It provides an easy-to-use interface for detecting when elements are visible within the user’s viewport. This is also used for the v-lazy component.",description_zh:"v-intersect 指令使用 Intersection Observer API。它提供了一个易于使用的界面，用于检测元素何时在用户的视口中可见。这也用于 v-lazy 组件。",documentationType:"  | ((\n        isIntersecting: boolean,\n        entries: IntersectionObserverEntry[],\n        observer: IntersectionObserver,\n      ) => void)\n    | { handler: ObserveHandler; options: IntersectionObserverInit\n      }",params:[{name:"once",type:"boolean",description:"The handler function is only invoked once, the first time the element is visible.",description_zh:"处理程序函数仅调用一次，即元素第一次可见时。",default:""},{name:"quiet",type:"boolean",description:"Will not invoke the handler function if the element is visible when the IntersectionObserver is created.",description_zh:"如果在创建 IntersectionObserver 时元素可见，则不会调用处理程序函数。",default:""}],link:"https://vuetifyjs.com/en/directives/intersect/",link_zh:"https://vuetifyjs.com/zh-Hans/directives/intersect/"},{name:"v-mutate",description:"The v-mutate directive utilizes the Mutation Observer API. It provides an easy to use interface for detecting when elements are updated.",description_zh:"v-mutate 指令使用了 DOM 变动观察者 API。它为检测 DOM 元素更改提供了简单易用的接口。",params:[{default:"",name:"attr",type:"boolean",description:"Sets the value of attributes to true.",description_zh:"将属性的值设置为 true。"},{default:"",name:"char",type:"boolean",description:"Sets the value of characterData to true.",description_zh:"将 characterData 的值设置为 true。"},{default:"",name:"child",type:"boolean",description:"Sets the value of childList to true.",description_zh:"将 childList 的值设置为 true。"},{default:"",name:"immediate",type:"boolean",description:"The provided handler function is invoked immediately when directive is attached to element.",description_zh:"当指令附加到元素时，将立即调用提供的处理程序函数。"},{default:"",name:"once",type:"boolean",description:"The provided handler function is only invoked once.",description_zh:"提供的处理程序函数仅调用一次。"},{default:"",name:"sub",type:"boolean",description:"Sets the value of subtree to true.",description_zh:"将 subtree 的值设置为 true。"}],link:"https://vuetifyjs.com/en/directives/mutate/",link_zh:"https://vuetifyjs.com/en/directives/mutate/",documentationType:"  | MutationCallback\n  | { handler: MutationCallback; options: MutationObserverInit\n      }\n"},{name:"v-resize",description:"The v-resize directive can be used for calling specific functions when the window resizes.",description_zh:"v-resize 指令可用于在窗口尺寸发生变化时调用指定的函数。",link:"https://vuetifyjs.com/en/directives/resize/",link_zh:"https://vuetifyjs.com/en/directives/resize/",params:[],documentationType:"() => void\n"},{name:"v-ripple",description:"The v-ripple directive is used to show action from a user. It can be applied to any block level element. Numerous components come with the ripple directive built in, such as the v-btn, v-tabs-item and many more.",description_zh:"v-ripple 指令用于显示用户的操作。它可以应用于任何块级元素。许多组件都内置了波纹指令，如 v-btn、v-tabs-item 等。",link:"https://vuetifyjs.com/en/directives/ripple/",link_zh:"https://vuetifyjs.com/en/directives/ripple/",params:[{default:"",name:"center",type:"boolean",description:"Makes it so that the ripple originates from the center of the element, instead where the user clicked on it.",description_zh:"使波纹起源于元素的中心，而不是用户单击它的地方。"},{default:"",name:"circle",type:"boolean",description:"Changes the ripple behavior to better match circular elements.",description_zh:"更改纹波行为以更好地匹配圆形元素。"},{default:"",name:"stop",type:"boolean",description:"Prevents ripples from being triggered on any other elements when the click event is bubbling up.",description_zh:"防止在点击事件冒泡时在任何其他元素上触发涟漪。"}],documentationType:"boolean | { class: string }\n"},{name:"v-scroll",description:"The v-scroll directive allows you to provide callbacks when the window, specified target or element itself (with .self modifier) is scrolled.",description_zh:"v-scroll 指令允许您在窗口、指定目标或元素本身( 使用.self 修饰符)滚动时提供回调。",link:"https://vuetifyjs.com/en/directives/scroll/",link_zh:"https://vuetifyjs.com/en/directives/scroll/",params:[],documentationType:"  | EventListener\n  | { handler: EventListener; options: AddEventListenerOptions }\n  | (EventListenerObject & { options: AddEventListenerOptions })\n"},{name:"v-tooltip",description:"The v-tooltip directive is a shorthand way of adding tooltips to elements in your application.",description_zh:"v-tooltip 指令是向应用程序中的元素添加工具提示的简写方式。",link:"https://vuetifyjs.com/en/directives/tooltip/",link_zh:"https://vuetifyjs.com/en/directives/tooltip/",params:[],documentationType:"string | boolean | Record<string, any>\n"},{name:"v-touch",description:"The v-touch directive allows you to capture swipe gestures and apply directional callbacks.",description_zh:"v-touch 指令允许您捕获滑动手势并应用方向回调。",link:"https://vuetifyjs.com/en/directives/touch/",link_zh:"https://vuetifyjs.com/en/directives/touch/",params:[],documentationType:"{\n  parent: boolean\n  options: AddEventListenerOptions\n  start: (\n    wrapperEvent: { originalEvent: TouchEvent } & {\n      touchstartX: number\n      touchstartY: number\n      touchmoveX: number\n      touchmoveY: number\n      touchendX: number\n      touchendY: number\n      offsetX: number\n      offsetY: number\n    },\n  ) => void\n  end: (\n    wrapperEvent: { originalEvent: TouchEvent } & {\n      touchstartX: number\n      touchstartY: number\n      touchmoveX: number\n      touchmoveY: number\n      touchendX: number\n      touchendY: number\n      offsetX: number\n      offsetY: number\n    },\n  ) => void\n  move: (\n    wrapperEvent: { originalEvent: TouchEvent } & {\n      touchstartX: number\n      touchstartY: number\n      touchmoveX: number\n      touchmoveY: number\n      touchendX: number\n      touchendY: number\n      offsetX: number\n      offsetY: number\n    },\n  ) => void\n  left: (wrapper: {\n    touchstartX: number\n    touchstartY: number\n    touchmoveX: number\n    touchmoveY: number\n    touchendX: number\n    touchendY: number\n    offsetX: number\n    offsetY: number\n  }) => void\n  right: (wrapper: {\n    touchstartX: number\n    touchstartY: number\n    touchmoveX: number\n    touchmoveY: number\n    touchendX: number\n    touchendY: number\n    offsetX: number\n    offsetY: number\n  }) => void\n  up: (wrapper: {\n    touchstartX: number\n    touchstartY: number\n    touchmoveX: number\n    touchmoveY: number\n    touchendX: number\n    touchendY: number\n    offsetX: number\n    offsetY: number\n  }) => void\n  down: (wrapper: {\n    touchstartX: number\n    touchstartY: number\n    touchmoveX: number\n    touchmoveY: number\n    touchendX: number\n    touchendY: number\n    offsetX: number\n    offsetY: number\n  }) => void\n}\n"}]},Oe={name:"VAlert",props:{border:{default:"false",value:"",type:"boolean / top / end / bottom / start",description:"Adds a colored border to the component.",description_zh:"向组件添加彩色边框。",required:!1},"border-color":{default:"undefined",value:"",type:"string",description:"Specifies the color of the border. Accepts any color value.",description_zh:"指定边框的颜色。接受任何颜色值。",required:!1},closable:{default:"false",value:"",type:"boolean",description:"Adds a close icon that can hide the alert.",description_zh:"添加可以隐藏警报的关闭图标。",required:!1},"close-icon":{default:"'$close'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",description:"Change the default icon used for closable alerts.",description_zh:"更改用于可关闭警报的默认图标。",required:!1},"close-label":{default:"'$vuetify.close'",value:"",type:"string",description:"Text used for aria-label on closable alerts. Can also be customized globally in Internationalization.",description_zh:"用于可关闭警报上的 aria-label 的文本。也可以在 Internationalization 中全局定制。",required:!1},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},density:{default:"'default'",value:"",type:"default / comfortable / compact",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。",required:!1},elevation:{default:"undefined",value:"",type:"string | number",description:"Designates an elevation applied to the component between 0 and 24. You can find more information on the elevation page.",description_zh:"指定应用于组件的 0 到 24 之间的高程。您可以在海拔页面上找到更多信息。",required:!1},height:{default:"undefined",value:"",type:"string | number",description:"Sets the height for the component.",description_zh:"设置组件的高度。",required:!1},icon:{default:"null",value:"",type:"  | false  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",description:"Apply a specific icon using the v-icon component.",description_zh:"使用 v-icon 组件应用特定图标。",required:!1},location:{default:"undefined",value:"",type:"Anchor",description:"Specifies the component’s location. Can combine by using a space separated string.",description_zh:"指定组件的位置。可以使用空格分隔的字符串进行组合。",required:!1},"max-height":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum height for the component.",description_zh:"设置组件的最大高度。",required:!1},"max-width":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。",required:!1},"min-height":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum height for the component.",description_zh:"设置组件的最小高度。",required:!1},"min-width":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum width for the component.",description_zh:"设置组件的最小宽度。",required:!1},"v-model":{default:"true",value:"",type:"boolean",description:"Controls whether the component is visible or hidden.",description_zh:"控制组件是可见还是隐藏。",required:!1},position:{default:"undefined",value:"",type:"static / relative / fixed / absolute / sticky",description:"Sets the position for the component.",description_zh:"设置零部件的位置。",required:!1},prominent:{default:"false",value:"",type:"boolean",description:"Displays a larger vertically centered icon to draw more attention.",description_zh:"显示一个更大的垂直居中图标以吸引更多注意力。",required:!1},rounded:{default:"undefined",value:"",type:"string | number | boolean",description:"Designates the border-radius applied to the component. This can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. Find more information on available border radius classes on the Border Radius page.",description_zh:"指定应用于组件的 border-radius。这可以是 0、xs、sm、true、lg、xl、pill、circle 和 shaped。在 Border Radius 页面上查找有关可用边界半径类的更多信息。",required:!1},tag:{default:"'div'",value:"",type:"string",description:"Specify a custom tag used on the root element.",description_zh:"指定根元素上使用的自定义标记。",required:!1},text:{default:"undefined",value:"",type:"string",description:"Specify content text for the component.",description_zh:"指定组件的内容文本。",required:!0},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},tile:{default:"false",value:"",type:"boolean",description:"Removes the component’s border-radius.",description_zh:"删除组件的 border-radius。",required:!1},title:{default:"undefined",value:"",type:"string",description:"Specify a title text for the component.",description_zh:"指定组件的标题文本。",required:!1},type:{default:"undefined",value:"",type:"success / info / warning / error",description:"Create a specialized alert that uses a contextual color and has a pre-defined icon.",description_zh:"创建使用上下文颜色并具有预定义图标的专用警报。",required:!1},variant:{default:"'flat'",value:"",type:"text / flat / elevated / tonal / outlined / plain",description:"Applies a distinct style to the component.",description_zh:"将不同的样式应用于组件。",required:!1},width:{default:"undefined",value:"",type:"string | number",description:"Sets the width for the component.",description_zh:"设置组件的宽度。",required:!1}},link:"https://vuetifyjs.com/en/api/v-alert/",link_zh:"https://vuetifyjs.com/en/api/v-alert/",typeDetail:{},events:[{name:"click:close",description:"Emitted when close icon is clicked.",description_zh:"单击关闭图标时发出。",params:"[MouseEvent]",value:""},{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件的模型更改时发出的事件。",params:"[boolean]",value:""}],methods:[],slots:[{name:"append",description:"Slot for icon at end of alert.",description_zh:"警报结束时的图标槽。"},{name:"close",description:"Slot for icon used in dismissible prop.",description_zh:"用于 dismissible prop 的图标插槽。",params:"{ props: Record<string, any> }"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。"},{name:"prepend",description:"Slot for icon at beginning of alert.",description_zh:"警报开始时的图标槽。"},{name:"text",description:"Slot for the component’s text content.",description_zh:"组件文本内容的插槽。"},{name:"title",description:"Slot for the component’s title content.",description_zh:"组件标题内容的插槽。"}],exposed:[],suggestions:["v-alert-title"]},Ge={name:"VAlertTitle",props:{tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-alert-title/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-alert-title/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},t={name:"VApp",props:{"full-height":{default:"true",value:"",type:"boolean",description:"Sets the component height to 100%.",description_zh:"将组件高度设置为 100%。",required:!1},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1}},link:"https://vuetifyjs.com/en/api/v-app/",link_zh:"https://vuetifyjs.com/en/api/v-app/",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。"}],exposed:[{name:"getLayoutItem",description:"Function that returns position and size information about a specific layout item.",description_zh:"Function that returns position and size information about a specific layout item.",detail:"(id: string) => {\n  size: number\n  position: 'top' | 'left' | 'right' | 'bottom'\n  top: number\n  bottom: number\n  left: number\n  right: number\n  id: string\n}"},{name:"items",description:"A array of all registered layout items.",description_zh:"A array of all registered layout items.",detail:"{\n  size: number\n  position: 'top' | 'left' | 'right' | 'bottom'\n  top: number\n  bottom: number\n  left: number\n  right: number\n  id: string\n}[]"},{name:"theme",description:"The instance of the injected active theme.",description_zh:"The instance of the injected active theme.",detail:"{\n  readonly isDisabled: boolean\n  readonly themes: Record<string, InternalThemeDefinition>\n  readonly name: string\n  readonly current: {\n    readonly dark: boolean\n    readonly colors: {\n      readonly [x: string]: string\n      readonly background: string\n      readonly surface: string\n      readonly primary: string\n      readonly secondary: string\n      readonly success: string\n      readonly warning: string\n      readonly error: string\n      readonly info: string\n      readonly 'on-background': string\n      readonly 'on-surface': string\n      readonly 'on-primary': string\n      readonly 'on-secondary': string\n      readonly 'on-success': string\n      readonly 'on-warning': string\n      readonly 'on-error': string\n      readonly 'on-info': string\n    }\n    readonly variables: { readonly [x: string]: string | number }\n  }\n  readonly computedThemes: {\n    readonly [x: string]: {\n      readonly dark: boolean\n      readonly colors: {\n        readonly [x: string]: string\n        readonly background: string\n        readonly surface: string\n        readonly primary: string\n        readonly secondary: string\n        readonly success: string\n        readonly warning: string\n        readonly error: string\n        readonly info: string\n        readonly 'on-background': string\n        readonly 'on-surface': string\n        readonly 'on-primary': string\n        readonly 'on-secondary': string\n        readonly 'on-success': string\n        readonly 'on-warning': string\n        readonly 'on-error': string\n        readonly 'on-info': string\n      }\n      readonly variables: { readonly [x: string]: string | number }\n    }\n  }\n  readonly themeClasses: string | undefined\n  readonly styles: string\n  readonly global: {\n    readonly name: string\n    readonly current: {\n      readonly dark: boolean\n      readonly colors: {\n        readonly [x: string]: string\n        readonly background: string\n        readonly surface: string\n        readonly primary: string\n        readonly secondary: string\n        readonly success: string\n        readonly warning: string\n        readonly error: string\n        readonly info: string\n        readonly 'on-background': string\n        readonly 'on-surface': string\n        readonly 'on-primary': string\n        readonly 'on-secondary': string\n        readonly 'on-success': string\n        readonly 'on-warning': string\n        readonly 'on-error': string\n        readonly 'on-info': string\n      }\n      readonly variables: { readonly [x: string]: string | number }\n    }\n  }\n}"}]},Ae={name:"VAppBar",props:{absolute:{default:"false",value:"",type:"boolean",version:"",description:"Applies position: absolute to the component.",description_zh:"将 position： absolute 应用于组件。",required:!1},border:{default:"false",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be xs, sm, md, lg, xl.",description_zh:"指定应用于组件的 border-radius。这可以是 xs、sm、md、lg、xl。",required:!1},collapse:{default:"false",value:"",type:"boolean",version:"",description:"Morphs the component into a collapsed state, reducing its maximum width.",description_zh:"将组件变形为折叠状态，从而减少其最大宽度。",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},density:{default:"'default'",value:"",type:"default / prominent / comfortable / compact",version:"",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。",required:!1},elevation:{default:"undefined",value:"",type:"string | number",version:"",description:"Designates an elevation applied to the component between 0 and 24. You can find more information on the elevation page.",description_zh:"指定应用于组件的 0 到 24 之间的高程。您可以在海拔页面上找到更多信息。",required:!0},extended:{default:"false",value:"",type:"boolean",version:"",description:"Use this prop to increase the height of the toolbar without using the extension slot for adding content. May be used in conjunction with the extension-height prop, and any of the other props that affect the height of the toolbar, e.g. prominent, dense, etc., WITH THE EXCEPTION of height.",description_zh:"使用此 prop 来增加工具栏的高度，而无需使用扩展槽来添加内容。可以与 extension-height 属性以及任何其他影响工具栏高度的 props 结合使用，例如 prominent、denset 等，但 height 除外。",required:!1},"extension-height":{default:"48",value:"",type:"string | number",version:"",description:"Designate an explicit height for the extension slot.",description_zh:"指定扩展槽的显式高度。",required:!1},flat:{default:"false",value:"",type:"boolean",version:"",description:"Removes the component’s box-shadow.",description_zh:"删除组件的 box-shadow。",required:!1},floating:{default:"false",value:"",type:"boolean",version:"",description:"Applies display: inline-flex to the component.",description_zh:"将 display： inline-flex 应用于组件。",required:!1},height:{default:"64",value:"",type:"string | number",version:"",description:"Designates a specific height for the toolbar. Overrides the heights imposed by other props, e.g. prominent, dense, extended, etc.",description_zh:"指定工具栏的特定高度。覆盖其他 props 施加的高度，例如 prominent、dense、extended 等。",required:!1},image:{default:"undefined",value:"",type:"string",version:"",description:"Specifies a v-img as the component’s background.",description_zh:"指定 v-img 作为组件的背景。",required:!1},location:{default:"'top'",value:"",type:"top / bottom",version:"",description:"Aligns the component towards the top or bottom.",description_zh:"将组件与顶部或底部对齐。",required:!1},"v-model":{default:"true",value:"",type:"boolean",version:"",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v-model 值。如果 component 支持 multiple prop，则默认为空数组。",required:!1},name:{default:"undefined",value:"",type:"string",version:"",description:"Assign a specific name for layout registration.",description_zh:"为布局注册分配特定名称。",required:!1},order:{default:"0",value:"",type:"string | number",version:"",description:"Adjust the order of the component in relation to its registration order.",description_zh:"根据元件的注册顺序调整元件的顺序。",required:!1},rounded:{default:"undefined",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. Find more information on available border radius classes on the Border Radius page.",description_zh:"指定应用于组件的 border-radius。这可以是 0、xs、sm、true、lg、xl、pill、circle 和 shaped。在 Border Radius 页面上查找有关可用边界半径类的更多信息。",required:!1},"scroll-behavior":{default:"undefined",value:"",type:"  | (string & {})  | 'hide'  | 'fully-hide'  | 'inverted'  | 'collapse'  | 'elevate'  | 'fade-image'",version:"v3.2.0",description:"Specify an action to take when the scroll position of scroll-target reaches scroll-threshold. Accepts any combination of hide, inverted, collapse, elevate, and fade-image. Multiple values can be used, separated by a space.",description_zh:"指定当 scroll-target 的滚动位置达到 scroll-threshold 时要执行的操作。接受隐藏、反转、折叠、提升和淡化图像的任意组合。可以使用多个值，用空格分隔。",required:!1},"scroll-target":{default:"undefined",value:"",type:"string",version:"",description:"The element to target for scrolling events. Uses window by default.",description_zh:"滚动事件的目标元素。默认情况下使用 window。",required:!1},"scroll-threshold":{default:"300",value:"",type:"string | number",version:"",description:"The amount of scroll distance down before scroll-behavior activates.",description_zh:"在 scroll-behavior 激活之前向下滚动的距离量。",required:!1},tag:{default:"'header'",value:"",type:"string",version:"",description:"Specify a custom tag used on the root element.",description_zh:"指定根元素上使用的自定义标记。",required:!1},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},tile:{default:"false",value:"",type:"boolean",version:"",description:"Removes any applied border-radius from the component.",description_zh:"从组件中删除任何应用的 border-radius。",required:!1},title:{default:"undefined",value:"",type:"string",version:"",description:"Specify a title text for the component.",description_zh:"指定组件的标题文本。",required:!1}},link:"https://vuetifyjs.com/en/api/v-app-bar/",link_zh:"https://vuetifyjs.com/en/api/v-app-bar/",typeDetail:{},events:[{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件的模型更改时发出的事件。",params:"[boolean]",value:""}],methods:[],slots:[{name:"append",description:"Adds an item inside the input and after input content.",description_zh:"在 input 内容内和 After input 内容中添加一个项目。"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。"},{name:"extension",description:"Slot positioned directly under the main content of the toolbar. Height of this slot can be set explicitly with the extension-height prop.",description_zh:"插槽位于工具栏的主要内容正下方。这个插槽的高度可以通过 extension-height 属性显式设置。"},{name:"image",description:"Expects the v-img component.",description_zh:"需要 v-img 组件。"},{name:"prepend",description:"Adds an item outside the input and before input content.",description_zh:"在输入内容之外和之前添加项目。"},{name:"title",description:"Slot for the component’s title content.",description_zh:"组件标题内容的插槽。"}],exposed:[],suggestions:["v-app-bar-nav-icon","v-app-bar-title"]},Ve={name:"VAppBarNavIcon",props:{active:{default:"undefined",value:"",type:"boolean",description:"Control the active state of the item. This is typically used to highlight components.",description_zh:"控制项的 active 状态。这通常用于高亮显示组件。"},"append-icon":{default:"undefined",value:"",type:"any",description:"Creates a v-icon component after default content in the append slot.",description_zh:"在追加槽中的默认内容之后创建一个 v-icon 组件。"},block:{default:"false",value:"",type:"boolean",description:"Enlarge the button to 100% of the available space.",description_zh:"将按钮扩大到可用空间的 100％。"},border:{default:"false",value:"",type:"string | number | boolean",description:"Apply a border style to the component.",description_zh:"应用边框样式到组件。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},density:{default:"default",value:"",type:"default / comfortable / compact",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。"},disabled:{default:"false",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},elevation:{default:"undefined",value:"",type:"string | number",description:"The elevation of the component is acceptable from 0 to 24. You can read more on the Elevation page.",description_zh:"组件的海拔可接受 0 到 24 之间的值。你可以在 elevation page 浏览更多信息。"},exact:{default:"false",value:"",type:"boolean",description:"Exact match link. Without this link, '/' will match each route. You can read more exact props in the vue-router documentation.",description_zh:"完全匹配链接。如果没有这个链接，‘/’ 将匹配每个路由。你能够在 vue-router 文档浏览更多 exact prop。"},flat:{default:"false",value:"",type:"boolean",description:"Removes the button box shadow. This is different than using the ‘flat’ variant.",description_zh:"删除按钮框阴影。这与使用“扁平”变体不同。"},height:{default:"undefined",value:"",type:"string | number",description:"Sets the height of the component.",description_zh:"设定组件的高度。"},href:{default:"undefined",value:"",type:"string",description:"Specify the component as the anchor and apply the href attribute.",description_zh:"指定组件为锚点并应用 href 属性。"},icon:{default:"$menu",value:"",type:"any",description:"Apply a specific icon using the v-icon component. The button will become round.",description_zh:"使用 v-icon 组件应用特定图标。按钮将变为圆形。"},loading:{default:"false",value:"",type:"string | boolean",description:"Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - primary, secondary, success, info, warning, error) or a Boolean which uses the component color (set by color prop - if it’s supported by the component) or the primary color.",description_zh:"显示线性进度条。可以是指定应用于进度条的颜色的 String（任何材质颜色或主题颜色 - 主要、次要、成功、信息、警告、错误），也可以是使用组件颜色（由 color 属性设置 - 如果组件支持）或主要颜色的布尔值。"},location:{default:"undefined",value:"",type:"Anchor",description:"Specifies the component’s location. Can combine by using a space separated string.",description_zh:"指定组件的位置。可以使用空格分隔的字符串进行组合。"},"max-height":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum height of the component.",description_zh:"设定组件的最大高度。"},"max-width":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum width of the component.",description_zh:"设定组件的最大宽度。"},"min-height":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum height of the component.",description_zh:"设定组件的最小高度。"},"min-width":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum width of the component.",description_zh:"设定组件的最小宽度。"},position:{default:"undefined",value:"",type:"static / relative / fixed / absolute / sticky",description:"Sets the position for the component.",description_zh:"设置元件的位置。"},"prepend-icon":{default:"undefined",value:"",type:"any",description:"Creates a v-icon component in the prepend slot before default content.",description_zh:"在默认内容前面的预置槽中创建一个 v-icon 组件。"},replace:{default:"false",value:"",type:"boolean",description:"Setting replace prop will call router.replace() instead of router.push() when clicked, so the navigation will not leave a history record. You can find more information about the replace prop on the vue-router documentation.",description_zh:"设置 replace prop 会在点击时调用 router.replace（） 而不是 router.push（），因此导航不会留下历史记录。你可以在 vue-router 文档中找到更多关于 replace 属性的信息。"},ripple:{default:"true",value:"",type:"boolean | { class: string }",description:"Apply the v-ripple directive.",description_zh:"应用 v-ripple 指令。"},rounded:{default:"undefined",value:"",type:"string | number | boolean",description:"Applies the border-radius style to the specified component. You can get more information about this on the Corner Radius of Borders page",description_zh:"对指定的组件应用 border-radius 样式。您可以在 边框的圆角半径页面 获取更多有关信息"},"selected-class":{default:"undefined",value:"",type:"string",description:"Configure the name of the CSS class that will be applied when the selected item is selected.",description_zh:"配置被选中项目时应用的 CSS 类名。"},size:{default:"default",value:"",type:"string | number",description:"Set the height and width of the component. The default unit is px. You can also use the following predefined sizes: x-small, small, default, large, and x-large.",description_zh:"设置组件的高度和宽度。默认单位是px。也可以使用以下预定义的大小：x-small、small、default、large和x-large。"},slim:{default:"false",value:"",type:"boolean",description:"Reduces padding to 0 8px.",description_zh:"将填充减少到 0 8px。"},stacked:{default:"false",value:"",type:"boolean",description:"Displays this button as a flex-column",description_zh:"以 flex-column 形式显示此按钮"},symbol:{default:"undefined",value:"",type:"any",description:"The Symbol used to hook into group functionality for components like v-btn-toggle and v-bottom-navigation.",description_zh:"用于挂接到 v-btn-toggle 和 v-bottom-navigation 等组件的组功能的符号。"},tag:{default:"button",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"},text:{default:"undefined",value:"",type:"string",description:"Sets the content text of the component.",description_zh:"设置组件的内容文本。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},to:{default:"undefined",value:"",type:"RouteLocationRaw",description:"Indicates the target route of the link. You can read more about to props in the vue-router documentation.",description_zh:"表示链接的目标路由。你可以在 vue-router 文档浏览更多 to prop。"},value:{default:"undefined",value:"",type:"any",description:"The value used when selecting a component in a group. If not provided, a unique ID is used.",description_zh:"在组中选择组件时使用的值。如果没有提供，则使用唯一 ID。"},variant:{default:"text",value:"",type:"flat / text / elevated / tonal / outlined / plain",description:"Applies a distinct style to the component.",description_zh:"对组件应用不同的样式。"},width:{default:"undefined",value:"",type:"string | number",description:"Sets the width of the component.",description_zh:"设定组件的宽度。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-app-bar-nav-icon/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-app-bar-nav-icon/#links",typeDetail:{},events:[],methods:[],slots:[{name:"append",description:"Adds an item inside the input and after input content.",description_zh:"在输入内容内部和之后添加一个项目。"},{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"},{name:"loader",description:"Slot for custom loader (displayed when loading prop is equal to true).",description_zh:"自定义加载器的插槽（当加载道具等于 true 时显示）。"},{name:"prepend",description:"Adds an item outside the input and before input content.",description_zh:"在输入内容之外和输入内容之前添加一个项目。"}]},He={name:"VAppBarTitle",props:{tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"},text:{default:"undefined",value:"",type:"string",description:"Sets the content text of the component.",description_zh:"设置组件的内容文本。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-app-bar-title/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-app-bar-title/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"},{name:"text",description:"Slot for the component’s text content.",description_zh:"组件文本内容的插槽。"}]},Fe={name:"VAutocomplete",props:{active:{default:"false",value:"",type:"boolean",version:"",description:"Controls the active state of the item. This is typically used to highlight the component.",description_zh:"控制项的活动状态。这通常用于突出显示组件。",required:!1},"append-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Creates a v-icon component after default content in the append slot.",description_zh:"在附加插槽中的默认内容之后创建一个 v 图标组件。",required:!1},autofocus:{default:"false",value:"",type:"boolean",version:"",description:"Enables autofocus.",description_zh:"启用自动对焦。",required:!1},"auto-select-first":{default:"false",value:"",type:"boolean / exact",version:"v3.3.0",description:"When searching, will always highlight the first option and select it on blur. exact will only highlight and select exact matches.",description_zh:"搜索时，将始终高亮显示第一个选项并在模糊时选择它。exact 将仅突出显示并选择 exact matches。",required:!1},"base-color":{default:"undefined",value:"",type:"string",version:"",description:"Sets the color of the input when it is not focused.",description_zh:"设置输入未聚焦时的颜色。",required:!1},"bg-color":{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control’s background. Used on components that also support the color prop. - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件的背景。用于也支持 color 属性的组件。- 支持实用工具颜色（例如 Success 或 Purple）或 CSS 颜色（#033 或 RGBA（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},"center-affix":{default:"undefined",value:"",type:"boolean",version:"",description:"Vertically align appendInner, prependInner, clearIcon and label in the center.",description_zh:"将 appendInner、prependInner、clearIcon 和 label 垂直对齐在中心。",required:!1},chips:{default:"false",value:"",type:"boolean",version:"",description:"Changes display of selections to chips.",description_zh:"将选择项的显示更改为筹码。",required:!1},clearable:{default:"false",value:"",type:"boolean",version:"",description:"Allows for the component to be cleared.",description_zh:"允许清除组件。",required:!1},"clear-icon":{default:"'$clear'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"The icon used when the clearable prop is set to true.",description_zh:"当 clearable prop 设置为 true 时使用的图标。",required:!1},"clear-on-select":{default:"false",value:"",type:"boolean",version:"",description:"Reset the search text when a selection is made while using the multiple prop.",description_zh:"在使用 multiple 属性时进行选择时重置搜索文本。",required:!1},"closable-chips":{default:"false",value:"",type:"boolean",version:"",description:"Enables the closable prop on all v-chip components.",description_zh:"在所有 v-chip 组件上启用 closable prop。",required:!1},"close-text":{default:"'$vuetify.close'",value:"",type:"string",version:"",description:"Text set to to the inputs aria-label and title when input menu is closed.",description_zh:"关闭输入菜单时，文本设置为输入 aria-label 和 title。",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},counter:{default:"false",value:"",type:"string | number | boolean",version:"",description:"Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation.",description_zh:"为 input length 创建 counter;如果未指定数字，则默认为 25。不应用任何验证。",required:!1},"counter-value":{default:"undefined",value:"",type:"number | ((value: any) => number)",version:"",description:"Function returns the counter display text.",description_zh:"function 返回计数器显示文本。",required:!1},"custom-filter":{default:"undefined",value:"",type:"FilterFunction",version:"",description:"Function used to filter items, called for each filterable key on each item in the list. The first argument is the filterable value from the item, the second is the search term, and the third is the internal item object. The function should return true if the item should be included in the filtered list, or the index of the match in the value if it should be included with the result highlighted.",description_zh:"用于筛选项目的函数，为列表中每个项目上的每个可筛选键调用。第一个参数是项目中的可筛选值，第二个参数是搜索词，第三个参数是内部项目对象。如果项目应包含在筛选列表中，则该函数应返回 true，如果匹配项应包含在突出显示的结果中，则该值应返回匹配项的索引。",required:!1},"custom-key-filter":{default:"undefined",value:"",type:"unknown",version:"",description:"Function used on specific keys within the item object. customFilter is skipped for columns with customKeyFilter specified.",description_zh:"用于 item 对象中特定键的函数。对于指定了 customKeyFilter 的列，将跳过 customFilter。",required:!1},density:{default:"'default'",value:"",type:"default / comfortable / compact",version:"",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。",required:!1},direction:{default:"'horizontal'",value:"",type:"horizontal / vertical",version:"",description:"Changes the direction of the input.",description_zh:"更改输入的方向。",required:!1},disabled:{default:"null",value:"",type:"boolean",version:"",description:"Removes the ability to click or target the input.",description_zh:"删除单击或定位输入的功能。",required:!1},eager:{default:"false",value:"",type:"boolean",version:"",description:"Forces the component’s content to render when it mounts. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO.",description_zh:"强制组件的内容在挂载时呈现。如果您的内容不会在 DOM 中呈现，并且您希望为 SEO 抓取，这将非常有用。",required:!1},error:{default:"false",value:"",type:"boolean",version:"",description:"Puts the input in a manual error state.",description_zh:"将输入置于手动错误状态。",required:!1},"error-messages":{default:"[]",value:"",type:"string | string[]",version:"",description:"Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the rules prop. This field will not trigger validation.",description_zh:"将输入置于错误状态并传递自定义错误消息。将与 rules prop 发生的任何验证相结合。此字段不会触发验证。",required:!1},"filter-keys":{default:"['title']",value:"",type:"string | string[]",version:"",description:"Array of specific keys to filter on the item.",description_zh:"用于筛选项目的特定键的数组。",required:!1},"filter-mode":{default:"'intersection'",value:"",type:"some / every / union / intersection",version:"",description:"Controls how the results of customFilter and customKeyFilter are combined. All modes only apply customFilter to columns not specified in customKeyFilter.some: There is at least one match from either the custom filter or the custom key filter.every: All columns match either the custom filter or the custom key filter.union: There is at least one match from the custom filter, or all columns match the custom key filters.intersection: There is at least one match from the custom filter, and all columns match the custom key filters.",description_zh:"控制 customFilter 和 customKeyFilter 的结果的组合方式。所有模式仅将 customFilter 应用于 customKeyFilter.some：自定义筛选条件或自定义键至少有一个匹配项 filter.every：所有列都与自定义筛选条件或自定义键匹配 filter.union：自定义筛选条件中至少有一个匹配项，或者所有列都与自定义键 filters.intersection 匹配： 自定义筛选条件中至少有一个匹配项，并且所有列都与自定义键筛选条件匹配。",required:!1},flat:{default:"false",value:"",type:"boolean",version:"",description:"Removes box shadow when using a variant with elevation.",description_zh:"使用具有高程的变量时删除框阴影。",required:!1},focused:{default:"false",value:"",type:"boolean",version:"",description:"Forces a focused state styling on the component.",description_zh:"强制对组件进行 focused state 样式设置。",required:!1},"hide-details":{default:"false",value:"",type:"boolean / auto",version:"",description:"Hides hint and validation errors. When set to auto messages will be rendered only if there’s a message (hint, error message, counter value etc) to display.",description_zh:"隐藏提示和验证错误。当设置为 auto 时，仅当有消息 （提示、错误消息、计数器值等） 要显示时，才会呈现消息。",required:!1},"hide-no-data":{default:"false",value:"",type:"boolean",version:"",description:"Hides the menu when there are no options to show. Useful for preventing the menu from opening before results are fetched asynchronously. Also has the effect of opening the menu when the items array changes if not already open.",description_zh:"当没有要显示的选项时隐藏菜单。用于防止在异步获取结果之前打开菜单。如果尚未打开，则还具有在 items 数组更改时打开菜单的效果。",required:!1},"hide-selected":{default:"false",value:"",type:"boolean",version:"",description:"Do not display in the select menu items that are already selected.",description_zh:"不显示在已选择的 select 菜单项中。",required:!1},"hide-spin-buttons":{default:"false",value:"",type:"boolean",version:"",description:"Hides spin buttons on the input when type is set to number.",description_zh:"当 type 设置为 number 时，隐藏输入上的旋转按钮。",required:!1},hint:{default:"undefined",value:"",type:"string",version:"",description:"Displays hint text below the input when focused. Force this always open with the persistent-hint property.",description_zh:"聚焦时，在输入下方显示提示文本。使用 persistent-hint 属性强制 this always 打开。",required:!1},id:{default:"undefined",value:"",type:"string",version:"",description:"Sets the DOM id on the component.",description_zh:"设置组件上的 DOM ID。",required:!1},"item-children":{default:"false",value:"",type:"SelectItemKey",version:"",description:"This property currently has no effect.",description_zh:"此属性当前不起作用。",required:!1},"item-color":{default:"undefined",value:"",type:"string",version:"",description:"Sets color of selected items.",description_zh:"设置选定项目的颜色。",required:!1},"item-props":{default:"'props'",value:"",type:"SelectItemKey<any>",version:"",description:"Props object that will be applied to each item component. true will treat the original object as raw props and pass it directly to the component.",description_zh:"Props 对象。true 会将原始对象视为 raw props 并将其直接传递给组件。",required:!1},":items":{default:"[]",value:"",type:"any[]",version:"",description:"Can be an array of objects or strings. By default objects should have title and value properties, and can optionally have a props property containing any VListItem props. Keys to use for these can be changed with the item-title, item-value, and item-props props.",description_zh:"可以是对象或字符串的数组。默认情况下，对象应该具有 title 和 value 属性，并且可以选择具有包含任何 VListItem props 的 props 属性。用于这些的键可以通过 item-title、item-value 和 item-props 属性来更改。",required:!0},"item-title":{default:"'title'",value:"",type:"SelectItemKey<any>",version:"",description:"Property on supplied items that contains its title.",description_zh:"包含其标题的所提供项上的属性。",required:!1},"item-value":{default:"'value'",value:"",type:"SelectItemKey<any>",version:"",description:"Property on supplied items that contains its value.",description_zh:"包含其值的 supplied items 上的属性。",required:!1},label:{default:"undefined",value:"",type:"string",version:"",description:"Sets the text of the v-label or v-field-label component.",description_zh:"设置 v-label 或 v-field-label 组件的文本。",required:!0},"list-props":{default:"undefined",value:"",type:"unknown",version:"",description:"Pass props through to the v-list component. Accepts an object with anything from v-list props, camelCase keys are recommended.",description_zh:"将 props 传递给 v-list 组件。接受带有 v-list props 中的任何内容的对象，建议使用 camelCase 键。",required:!1},loading:{default:"false",value:"",type:"string | boolean",version:"",description:"Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - primary, secondary, success, info, warning, error) or a Boolean which uses the component color (set by color prop - if it’s supported by the component) or the primary color.",description_zh:"显示线性进度条。可以是指定应用于进度条的颜色的 String（任何材料颜色或主题颜色 - primary、secondary、success、info、warning、error），也可以是使用组件颜色（由 color 属性设置 - 如果组件支持）或主要颜色的 Boolean。",required:!1},"max-errors":{default:"1",value:"",type:"string | number",version:"",description:"Control the maximum number of shown errors from validation.",description_zh:"控制验证时显示的错误的最大数量。",required:!1},"max-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。",required:!1},menu:{default:"false",value:"",type:"boolean",version:"",description:"Renders with the menu open by default.",description_zh:"默认情况下，在菜单打开的情况下进行渲染。",required:!1},"menu-icon":{default:"'$dropdown'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Sets the the spin icon.",description_zh:"设置旋转图标。",required:!1},"menu-props":{default:"undefined",value:"",type:"unknown",version:"",description:"Pass props through to the v-menu component. Accepts an object with anything from v-menu props, camelCase keys are recommended.",description_zh:"将 props 传递给 v-menu 组件。接受带有 v-menu props 中的任何内容的对象，建议使用 camelCase 键。",required:!1},messages:{default:"[]",value:"",type:"string | string[]",version:"",description:"Displays a list of messages or a single message if using a string.",description_zh:"显示消息列表，如果使用字符串，则显示单个消息。",required:!1},"min-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum width for the component.",description_zh:"设置组件的最小宽度。",required:!1},"v-model":{default:"null",value:"",type:"any",version:"",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v-model 值。如果 component 支持 multiple prop，则默认为空数组。",required:!1},multiple:{default:"false",value:"",type:"boolean",version:"",description:"Changes select to multiple. Accepts array for value.",description_zh:"将 select 更改为 multiple。接受数组作为值。",required:!1},name:{default:"undefined",value:"",type:"string",version:"",description:"Sets the component’s name attribute.",description_zh:"设置组件的 name 属性。",required:!1},"no-data-text":{default:"'$vuetify.noDataText'",value:"",type:"string",version:"",description:"Text shown when no items are provided to the component.",description_zh:"未向组件提供任何项时显示的文本。",required:!1},"no-filter":{default:"false",value:"",type:"boolean",version:"",description:"Do not apply filtering when searching. Useful when data is being filtered server side.",description_zh:"搜索时不要应用筛选。在服务器端筛选数据时很有用。",required:!1},"open-on-clear":{default:"false",value:"",type:"boolean",version:"",description:"Open’s the menu whenever the clear icon is clicked.",description_zh:"每当单击清除图标时，打开菜单。",required:!1},"open-text":{default:"'$vuetify.open'",value:"",type:"string",version:"",description:"Text set to to the inputs aria-label and title when input menu is open.",description_zh:"当输入菜单打开时，文本设置为输入 aria-label 和 title。",required:!1},"persistent-clear":{default:"false",value:"",type:"boolean",version:"",description:"Always show the clearable icon when the input is dirty (By default it only shows on hover).",description_zh:"当输入脏时，始终显示可清除图标（默认情况下，它仅在悬停时显示）。",required:!1},"persistent-counter":{default:"false",value:"",type:"boolean",version:"",description:"Forces counter to always be visible.",description_zh:"强制计数器始终可见。",required:!1},"persistent-hint":{default:"false",value:"",type:"boolean",version:"",description:"Forces hint to always be visible.",description_zh:"强制提示始终可见。",required:!1},"persistent-placeholder":{default:"false",value:"",type:"boolean",version:"",description:"Forces placeholder to always be visible.",description_zh:"强制占位符始终可见。",required:!1},placeholder:{default:"undefined",value:"",type:"string",version:"",description:"Sets the input’s placeholder text.",description_zh:"设置输入的占位符文本。",required:!1},prefix:{default:"undefined",value:"",type:"string",version:"",description:"Displays prefix text.",description_zh:"显示前缀文本。",required:!1},"prepend-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Prepends an icon to the outnside the component’s input, uses the same syntax as v-icon.",description_zh:"在组件输入的外部预置一个图标，使用与 v-icon 相同的语法。",required:!1},"prepend-inner-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Creates a v-icon component in the prepend-inner slot.",description_zh:"在 prepend-inner 插槽中创建一个 v-icon 组件。",required:!1},readonly:{default:"null",value:"",type:"boolean",version:"",description:"Puts input in readonly state.",description_zh:"将输入置于只读状态。",required:!1},"return-object":{default:"false",value:"",type:"boolean",version:"",description:"Changes the selection behavior to return the object directly rather than the value specified with item-value.",description_zh:"更改选择行为以直接返回对象，而不是使用 item-value 指定的值。",required:!1},reverse:{default:"false",value:"",type:"boolean",version:"",description:"Reverses the orientation.",description_zh:"反转方向。",required:!1},role:{default:"'combobox'",value:"",type:"string",version:"",description:"The role attribute applied to the input.",description_zh:"应用于输入的 role 属性。",required:!1},rounded:{default:"undefined",value:"",type:"string | number | boolean",version:"",description:"Adds a border radius to the input.",description_zh:"向输入添加边框半径。",required:!1},rules:{default:"[]",value:"",type:"ValidationRule[]",version:"",description:"Accepts a mixed array of types function, boolean and string. Functions pass an input value as an argument and must return either true / false or a string containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) false or is a string.",description_zh:"接受 function、boolean 和 string 类型的混合数组。函数将输入值作为参数传递，并且必须返回 true / false 或包含错误消息的字符串。如果函数返回 （或数组中的任何值包含） false 或为字符串，则输入字段将进入错误状态。",required:!1},search:{default:"undefined",value:"",type:"string",version:"",description:"Text input used to filter items.",description_zh:"用于筛选项目的文本输入。",required:!1},"single-line":{default:"false",value:"",type:"boolean",version:"",description:"Label does not move on focus/dirty.",description_zh:"标签在聚焦/脏污时不移动。",required:!1},suffix:{default:"undefined",value:"",type:"string",version:"",description:"Displays suffix text.",description_zh:"显示后缀文本。",required:!1},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},tile:{default:"false",value:"",type:"boolean",version:"",description:"Removes any applied border-radius from the component.",description_zh:"从组件中删除任何应用的 border-radius。",required:!1},transition:{default:"false",value:"",type:"string | boolean | (TransitionProps & { component: Component })",version:"",description:"Sets the component transition. Can be one of the built in or custom transition.",description_zh:"设置零部件过渡。可以是内置或自定义过渡之一。",required:!1},type:{default:"'text'",value:"",type:"string",version:"",description:"Sets input type.",description_zh:"设置输入类型。",required:!1},"validate-on":{default:"undefined",value:"",type:" / eager / lazy / blur / input / submit / invalid-input / blur lazy / input lazy / submit lazy / invalid-input lazy / blur eager / input eager / submit eager / invalid-input eager / lazy blur / lazy input / lazy submit / lazy invalid-input / eager blur / eager input / eager submit / eager invalid-input",version:"",description:"Change what type of event triggers validation to run.",description_zh:"更改触发验证的事件类型以运行。",required:!1},"value-comparator":{default:"undefined",value:"",type:"(a: any, b: any) => boolean",version:"",description:"Apply a custom comparison algorithm to compare model-value and values contains in the items prop.",description_zh:"应用自定义比较算法来比较 models-value 和 items prop 中包含的值。",required:!1},variant:{default:"'filled'",value:"",type:" / outlined / plain / underlined / filled / solo / solo-inverted / solo-filled",version:"",description:"Applies a distinct style to the component.",description_zh:"将不同的样式应用于组件。",required:!1},width:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the width for the component.",description_zh:"设置组件的宽度。",required:!1}},link:"https://vuetifyjs.com/en/api/v-autocomplete/",link_zh:"https://vuetifyjs.com/en/api/v-autocomplete/",typeDetail:{},events:[{name:"click:append",description:"Emitted when append icon is clicked.",description_zh:"单击附加图标时发出。",params:"[MouseEvent]",value:""},{name:"click:appendInner",description:"Emitted when appended inner icon is clicked.",description_zh:"单击附加的内部图标时发出。",params:"[MouseEvent]",value:""},{name:"click:clear",description:"Emitted when clearable icon clicked.",description_zh:"单击可清除图标时发出。",params:"[MouseEvent]",value:""},{name:"click:prepend",description:"Emitted when prepended icon is clicked.",description_zh:"单击前置图标时发出。",params:"[MouseEvent]",value:""},{name:"click:prependInner",description:"Emitted when prepended inner icon is clicked.",description_zh:"单击前置的内部图标时发出。",params:"[MouseEvent]",value:""},{name:"update:focused",description:"Emitted when the input is focused or blurred",description_zh:"当输入聚焦或模糊时发出",params:"[boolean]",value:""},{name:"update:menu",description:"Event that is emitted when the component’s menu state changes.",description_zh:"组件的菜单状态更改时发出的事件。",params:"[boolean]",value:""},{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件的模型更改时发出的事件。",params:"[any]",value:""},{name:"update:search",description:"Event emitted when the search value changes.",description_zh:"搜索值更改时发出的事件。",params:"[any]",value:""}],methods:[],slots:[{name:"append",description:"Adds an item inside the input and after input content.",description_zh:"在 input 内容内和 After input 内容中添加一个项目。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"append-inner",description:"Adds an item inside the input content.",description_zh:"在输入内容中添加项目。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n}"},{name:"append-item",description:"Adds an item after menu content.",description_zh:"在菜单内容后添加项目。",params:""},{name:"chip",description:"Slot for custom chip when using the chip prop.",description_zh:"使用 chip 属性时自定义 chip 的插槽。",params:"{ item: ListItem; index: number; props: Record<string, unknown> }"},{name:"clear",description:"Slot for custom clear icon (displayed when the clearable prop is equal to true).",description_zh:"自定义 clear 图标的插槽（当 clearable prop 等于 true 时显示）。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n} & { props: Record<string, any> }"},{name:"details",description:"Slot for custom input details to modifying the display of messages.",description_zh:"用于修改消息显示的自定义输入详细信息的插槽。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"item",description:'Define a custom item appearance. The root element of this slot must be a v-list-item with v-bind="props" applied. props includes everything required for the default select list behaviour - including title, value, click handlers, virtual scrolling, and anything else that has been added with item-props.',description_zh:"定义自定义项外观。这个插槽的根元素必须是一个应用了 v-bind=“props” 的 v-list-item。props 包括默认选择列表行为所需的一切 - 包括 title、value、click 处理程序、虚拟滚动以及通过 item-props 添加的任何其他内容。",params:"{ item: ListItem; index: number; props: Record<string, unknown> }"},{name:"label",description:"The default slot of the v-label or v-field-label component.",description_zh:"v-label 或 v-field-label 组件的默认插槽。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n} & { label: string; props: Record<string, any> }"},{name:"loader",description:"Slot for custom loader (displayed when loading prop is equal to true).",description_zh:"自定义加载器的插槽（当加载 prop 等于 true 时显示）。",params:"{ color: string; isActive: boolean }"},{name:"message",description:"Slot used to customize the message content.",description_zh:"用于自定义消息内容的插槽。",params:"{ message: string }"},{name:"no-data",description:"Defines content for when no items are provided.",description_zh:"定义未提供任何项目时的内容。",params:""},{name:"prepend",description:"Adds an item outside the input and before input content.",description_zh:"在输入内容之外和之前添加项目。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"prepend-inner",description:"Slot that is prepended to the input.",description_zh:"Slot 添加到输入的前缀。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n}"},{name:"prepend-item",description:"Adds an item before menu content.",description_zh:"在菜单内容之前添加项目。",params:""},{name:"selection",description:"Define a custom selection appearance.",description_zh:"定义自定义选择外观。",params:"{ item: ListItem; index: number }"}],exposed:[{name:"[string]",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"any"}]},je={name:"VAvatar",props:{color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。",required:!0},density:{default:"default",value:"",type:"default / comfortable / compact",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。"},end:{default:"false",value:"",type:"boolean",description:"Treat it as the last button and add a margin left margin to it.",description_zh:"视为最后一个按钮并为其添加左边距 margin 。"},icon:{default:"undefined",value:"",type:"any",description:"Assign a v-icon icon to the button.",description_zh:"为按钮指定一个 v-icon 图标。"},image:{default:"undefined",value:"",type:"string",description:"Apply a specific image using v-img.",description_zh:"使用 v-img 应用特定图像。"},rounded:{default:"undefined",value:"",type:"string | number | boolean",description:"Applies the border-radius style to the specified component. You can get more information about this on the Corner Radius of Borders page",description_zh:"对指定的组件应用 border-radius 样式。您可以在 边框的圆角半径页面 获取更多有关信息"},size:{default:"default",value:"",type:"string | number",description:"Set the height and width of the component. The default unit is px. You can also use the following predefined sizes: x-small, small, default, large, and x-large.",description_zh:"设置组件的高度和宽度。默认单位是px。也可以使用以下预定义的大小：x-small、small、default、large和x-large。",required:!0},start:{default:"false",value:"",type:"boolean",description:"Treat the first button as having a margin with a right margin added to it.",description_zh:"视为第一个按钮并未其添加右边距 margin 。"},tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"},text:{default:"undefined",value:"",type:"string",description:"Sets the content text of the component.",description_zh:"设置组件的内容文本。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},variant:{default:"flat",value:"",type:"flat / text / elevated / tonal / outlined / plain",description:"Applies a distinct style to the component.",description_zh:"对组件应用不同的样式。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-avatar/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-avatar/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},Ni={name:"VBadge",props:{bordered:{default:"false",value:"",type:"boolean",description:"When using the dot attribute, a 2px is applied to the badge by default and a 1.5px border is applied around it.",description_zh:"当使用 dot 属性时，默认情况下会在徽章上应用一个 2px 和它的周围应用一个 1.5px 的边框。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},content:{default:"undefined",value:"",type:"string | number",description:"Text content to show in the badge.",description_zh:"要在锁屏提醒中显示的文本内容。"},dot:{default:"false",value:"",type:"boolean",description:"Reduce the size of the badge and hide its contents.",description_zh:"减小徽章的大小并隐藏其内容。"},floating:{default:"false",value:"",type:"boolean",description:"Elevates the badge above the slotted content.",description_zh:"将锁屏提醒提升到插槽内容上方。"},icon:{default:"undefined",value:"",type:"any",description:"Assign a v-icon icon to the button.",description_zh:"为按钮指定一个 v-icon 图标。"},inline:{default:"false",value:"",type:"boolean",description:"Move the badge so that it aligns with the packaging elements. The use of left props is supported.",description_zh:"移动徽章，使其与包装元素保持一致。支持使用 left prop。"},label:{default:"$vuetify.badge",value:"",type:"string",description:"The aria-label used for the badge.",description_zh:"用于徽章的咏叹调标签。"},location:{default:"top end",value:"",type:"Anchor",description:"Specifies the component’s location. Can combine by using a space separated string.",description_zh:"指定组件的位置。可以使用空格分隔的字符串进行组合。"},max:{default:"undefined",value:"",type:"string | number",description:"Sets the maximum number allowed when using the content prop with a number like value. If the content number exceeds the maximum value, a + suffix is added.",description_zh:"设置使用具有类似数字值的 content 属性时允许的最大数量。如果内容编号超过最大值，则添加 + 后缀。"},":v-model":{default:"true",value:"",type:"boolean",description:"The value of the component v-mode. If the component supports variants, the default is an empty array.",description_zh:"组件 v-mode 的值。如果组件支持多属性，默认为空数组。"},"offset-x":{default:"undefined",value:"",type:"string | number",description:"Offset the badge on the x-axis.",description_zh:"将徽章在 x 轴上偏移。"},"offset-y":{default:"undefined",value:"",type:"string | number",description:"Offset the badge on the y-axis.",description_zh:"将徽章在 y 轴上偏移。"},rounded:{default:"undefined",value:"",type:"string | number | boolean",description:"Applies the border-radius style to the specified component. You can get more information about this on the Corner Radius of Borders page",description_zh:"对指定的组件应用 border-radius 样式。您可以在 边框的圆角半径页面 获取更多有关信息"},tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"},"text-color":{default:"undefined",value:"",type:"string",description:"Applies a specified color to the control text - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定颜色应用于控件文本 - 支持实用程序颜色（例如，成功或紫色）或 css 颜色（例如，成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},transition:{default:"scale-rotate-transition",value:"",type:"string | boolean | (TransitionProps & { component: Component })",description:"Sets the component transition. Can be one of the built in or custom transition.",description_zh:"设置组件过渡。可以是内置过渡或自定义过渡之一。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-badge/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-badge/#links",typeDetail:{},events:[],methods:[],slots:[{name:"badge",description:"The slot used to mark the content.",description_zh:"用于标记内容的插槽。"},{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},$e={name:"VBanner",props:{avatar:{default:"undefined",value:"",type:"string",description:"Designates a specific src image to pass to the thumbnail.",description_zh:"指定要传递给缩略图的特定 src 图像。"},"bg-color":{default:"undefined",value:"",type:"string",description:"Applies specified color to the control’s background. Used on components that also support the color prop. - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件的背景。用于还支持颜色道具的组件。- 支持实用程序颜色（例如 success 或紫色）或 CSS 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},border:{default:"false",value:"",type:"string | number | boolean",description:"Designates the border-radius applied to the component. This can be xs, sm, md, lg, xl.",description_zh:"指定应用于组件的边框半径。这可以是 xs、sm、md、lg、xl。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},density:{default:"default",value:"",type:"default / comfortable / compact",description:"Adjusts the vertical height used by the component.",description_zh:"调整元件使用的垂直高度。"},elevation:{default:"undefined",value:"",type:"string | number",description:"Designates an elevation applied to the component between 0 and 24. You can find more information on the elevation page.",description_zh:"指定应用于组件的高程介于 0 和 24 之间。您可以在高程页面上找到更多信息。"},height:{default:"undefined",value:"",type:"string | number",description:"Sets the height for the component.",description_zh:"设置组件的高度。"},icon:{default:"undefined",value:"",type:"any",description:"Apply a specific icon using the v-icon component.",description_zh:"使用 v-icon 组件应用特定图标。"},lines:{default:"undefined",value:"",type:"one / two / three",description:"The amount of visible lines of text before it truncates.",description_zh:"截断前的可见文本行数。"},location:{default:"undefined",value:"",type:"Anchor",description:"Specifies the component’s location. Can combine by using a space separated string.",description_zh:"指定组件的位置。可以使用空格分隔的字符串进行组合。"},"max-height":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum height for the component.",description_zh:"设置元件的最大高度。"},"max-width":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。"},"min-height":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum height for the component.",description_zh:"设置元件的最小高度。"},"min-width":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum width for the component.",description_zh:"设置组件的最小宽度。"},mobile:{default:"null",value:"",type:"boolean",description:"Applies the mobile banner styles.",description_zh:"应用移动横幅样式。"},"mobile-breakpoint":{default:"undefined",value:"",type:"number / xs / sm / md / lg / xl / xxl",description:"Overrides the display configuration default screen size that the component should be considered in mobile.",description_zh:"覆盖组件在移动设备中应考虑的显示配置默认屏幕大小。"},position:{default:"undefined",value:"",type:"sticky / static / relative / fixed / absolute",description:"Sets the position for the component.",description_zh:"设置组件的位置。"},rounded:{default:"undefined",value:"",type:"string | number | boolean",description:"Designates the border-radius applied to the component. This can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. Find more information on available border radius classes on the Border Radius page.",description_zh:"指定应用于组件的边框半径。这可以是 0、xs、sm、true、lg、xl、pill、circle 和 shaped。有关可用边框半径类的详细信息，请访问边框半径页面。"},stacked:{default:"false",value:"",type:"boolean",description:'Forces the banner actions onto a new line. This is not applicable when the banner has lines="one".',description_zh:"强制将横幅操作放到新行上。当横幅的 lines=“one” 时，这不适用。"},sticky:{default:"false",value:"",type:"boolean",description:"Applies position: sticky to the component with top: 0. You can find more information on the MDN documentation for sticky position.",description_zh:"将 position： sticky 应用于顶部：0 的组件。 您可以在 MDN 文档中找到有关粘性位置的更多信息。"},tag:{default:"div",value:"",type:"string",description:"Specify a custom tag used on the root element.",description_zh:"指定用于根元素的自定义标记。"},text:{default:"undefined",value:"",type:"string",description:"Specify content text for the component.",description_zh:"指定组件的内容文本。",required:!0},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},tile:{default:"false",value:"",type:"boolean",description:"Removes any applied border-radius from the component.",description_zh:"从元件中移除任何应用的边框半径。"},width:{default:"undefined",value:"",type:"string | number",description:"Sets the width for the component.",description_zh:"设置元件的宽度。"}},link:"https://vuetifyjs.com/en/api/v-banner/#links",link_zh:"https://vuetifyjs.com/en/api/v-banner/#links",typeDetail:{},events:[],methods:[],slots:[{name:"actions",description:"The slot used for the action’s content such as a v-btn.",description_zh:"用于操作内容（如 v-btn）的插槽。"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。"},{name:"prepend",description:"Adds an item outside the input and before input content.",description_zh:"在输入内容之外和输入内容之前添加项目。"},{name:"text",description:"Slot for the component’s text content.",description_zh:"组件文本内容的插槽。"}],suggestions:["v-banner-text","v-banner-actions"]},Be={name:"VBannerActions",props:{color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},density:{default:"undefined",value:"",type:"string",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-banner-actions/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-banner-actions/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},Le={name:"VBannerText",props:{tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-banner-text/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-banner-text/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},Ye={name:"VBottomNavigation",props:{absolute:{default:"false",value:"",type:"boolean",description:"给组件应用 position: absolute",description_zh:"给组件应用 position: absolute"},active:{default:"true",value:"",type:"boolean",description:"Control the active state of the item. This is typically used to highlight components.",description_zh:"控制项的 active 状态。这通常用于高亮显示组件。"},"bg-color":{default:"undefined",value:"",type:"string",description:"Applies specified color to the control’s background. Used on components that also support the color prop. - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件的背景。用于也支持 color 属性的组件。- 支持实用程序颜色（例如成功或紫色）或 CSS 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},border:{default:"false",value:"",type:"string | number | boolean",description:"Apply a border style to the component.",description_zh:"应用边框样式到组件。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},density:{default:"default",value:"",type:"default / comfortable / compact",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。"},disabled:{default:"false",value:"",type:"boolean",description:"Set all child components to a disabled state.",description_zh:"将所有子组件设置为禁用状态。"},elevation:{default:"undefined",value:"",type:"string | number",description:"The elevation of the component is acceptable from 0 to 24. You can read more on the Elevation page.",description_zh:"组件的海拔可接受 0 到 24 之间的值。你可以在 elevation page 浏览更多信息。"},grow:{default:"false",value:"",type:"boolean",description:"Force all v-btn children to take up all available horizontal space.",description_zh:"强制所有 v-btn 子项占用所有可用的水平空间。"},height:{default:"56",value:"",type:"string | number",description:"Sets the height of the component.",description_zh:"设定组件的高度。"},mandatory:{default:"false",value:"",type:"boolean / force",description:"Force at least one item to be selected, if available.",description_zh:"强制至少选择一个项目（如果可用）。"},":max":{default:"undefined",value:"",type:"number",description:"Set the maximum number that can be selected.",description_zh:"设置可以选择的最大数量。"},mode:{default:"undefined",value:"",type:"string",description:"Changes the orientation and active state styling of the component.",description_zh:"更改组件的方向和活动状态样式。"},":v-model":{default:"true",value:"",type:"unknown",description:"The value of the component v-mode. If the component supports variants, the default is an empty array.",description_zh:"组件 v-mode 的值。如果组件支持多属性，默认为空数组。"},multiple:{default:"false",value:"",type:"boolean",description:"Allows you to select multiple options.",description_zh:"允许您选择多个选项。"},name:{default:"bottom-navigation",value:"",type:"string",description:"Assign a specific name for layout registration.",description_zh:"为布局注册指定特定名称。"},order:{default:"0",value:"",type:"string | number",description:"Adjust the order of the component in relation to its registration order.",description_zh:"根据组件的注册顺序调整组件的顺序。"},rounded:{default:"undefined",value:"",type:"string | number | boolean",description:"Applies the border-radius style to the specified component. You can get more information about this on the Corner Radius of Borders page",description_zh:"对指定的组件应用 border-radius 样式。您可以在 边框的圆角半径页面 获取更多有关信息"},"selected-class":{default:"v-btn--selected",value:"",type:"string",description:"Configure the name of the CSS class that will be applied when the selected item is selected.",description_zh:"配置被选中项目时应用的 CSS 类名。"},tag:{default:"header",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-bottom-navigation/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-bottom-navigation/#links",typeDetail:{},events:[{name:"update:modelValue",description:"An event that is raised when a component's model-value changes.",description_zh:"当组件的 model-value 更改时引发的事件。",params:"[unknown]",value:""}],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},i={name:"VBottomSheet",props:{absolute:{default:"false",value:"",type:"boolean",description:"Applies position: absolute to the content element.",description_zh:"将 position： absolute 应用于 content 元素。"},activator:{default:"undefined",value:"",type:"Element | 'parent' | (string & {}) | ComponentPublicInstance",description:"Explicitly sets the overlay’s activator.",description_zh:"显式设置覆盖的激活器。"},"activator-props":{default:"{}",value:"",type:"unknown",description:"Apply custom properties to the activator.",description_zh:"将自定义属性应用于激活器。"},attach:{default:"false",value:"",type:"string | boolean | Element",description:"Specifies which DOM element the overlay content should teleport to. Can be a direct element reference, querySelector string, or true to disable teleporting. Uses body by default.",description_zh:"指定覆盖内容应传送到哪个 DOM 元素。可以是直接元素引用、querySelector 字符串或 true 以禁用传送。默认使用 body。"},"close-delay":{default:"undefined",value:"",type:"string | number",description:"The number of milliseconds to wait before the component shuts down. Applies only to hover and focus events.",description_zh:"组件关闭前等待的毫秒数。仅应用于悬停和焦点事件。"},"close-on-back":{default:"true",value:"",type:"boolean",description:"Closes the overlay content when the browser’s back button is pressed or $router.back() is called, cancelling the original navigation. persistent overlays will cancel navigation and animate as if they were clicked outside instead of closing.",description_zh:"当按下浏览器的后退按钮或调用 $router.back（） 时关闭覆盖内容，从而取消原始导航。持久叠加将取消导航并制作动画，就好像它们在外部单击而不是关闭一样。"},"close-on-content-click":{default:"false",value:"",type:"boolean",description:"Closes component when you click on its content.",description_zh:"单击组件内容时关闭组件。"},contained:{default:"false",value:"",type:"boolean",description:"Limits the size of the component and scrim to its offset parent. Implies absolute and attach. (Note: The parent element must have position: relative.).",description_zh:"将元件和稀松布的大小限制为其偏移父项。表示绝对和附加。（注意：父元素必须具有 position： relative。"},"content-class":{default:"undefined",value:"",type:"any",description:"Apply a custom class to the detached element. This implementation is useful since the contents of this element will be appended to the beginning of the v-app component (unless you set the attach attribute), and the class attribute will not pass the CSS class directly to the component.",description_zh:"将自定义的class应用于被分离的此元素。由于此元素的内容将被附加到v-app组件开头(除非你设置了attach属性)，并且class属性不会将css类直接传递给组件，所以这个实行非常有用。"},"content-props":{default:"undefined",value:"",type:"any",description:"Apply custom properties to the content.",description_zh:"将自定义属性应用于内容。"},disabled:{default:"false",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},eager:{default:"false",value:"",type:"boolean",description:"Forces the component’s content to render when it mounts. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO.",description_zh:"强制在装入组件时呈现组件的内容。如果您的内容不会在 DOM 中呈现，而您希望为 SEO 进行爬网，这将非常有用。"},fullscreen:{default:"false",value:"",type:"boolean",description:"Change the layout of the full-screen display.",description_zh:"改变全屏显示的布局。"},height:{default:"undefined",value:"",type:"string | number",description:"Sets the height of the component.",description_zh:"设定组件的高度。"},inset:{default:"false",value:"",type:"boolean",description:"Reduce the maximum width of dialog content to 70%",description_zh:"将对话框内容最大宽度减少到 70％"},location:{default:"bottom",value:"",type:"Anchor",description:"Specifies the anchor point for positioning the component, using directional cues to align it either horizontally, vertically, or both…",description_zh:"指定用于定位组件的锚点，使用方向提示将其水平、垂直或两者对齐..."},"location-strategy":{default:"static",value:"",type:"static / connected / LocationStrategyFn",description:"A function used to specifies how the component should position relative to its activator.",description_zh:"一个函数，用于指定组件相对于其激活器应如何定位。"},"max-height":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum height of the component.",description_zh:"设定组件的最大高度。"},"max-width":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum width of the component.",description_zh:"设定组件的最大宽度。"},"min-height":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum height of the component.",description_zh:"设定组件的最小高度。"},"min-width":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum width of the component.",description_zh:"设定组件的最小宽度。"},":v-model":{default:"false",value:"",type:"boolean",description:"The value of the component v-mode. If the component supports variants, the default is an empty array.",description_zh:"组件 v-mode 的值。如果组件支持多属性，默认为空数组。"},"no-click-animation":{default:"false",value:"",type:"boolean",description:"Use the persistent property to disable the bouncing effect when clicked outside of the content of the v-dialog.",description_zh:"使用 persistent 属性，在 v-dialog 的内容之外点击时，禁用弹跳效果。"},offset:{default:"undefined",value:"",type:"string | number | number[]",description:"A single value that offsets content away from the target based upon what side it is on.",description_zh:"一个值，它根据内容所在的一侧将内容与目标偏移。"},"open-delay":{default:"undefined",value:"",type:"string | number",description:"The number of milliseconds that the component waits before opening. Applies only to hover and focus events.",description_zh:"组件打开前等待的毫秒数。仅应用于悬停和焦点事件。"},"open-on-click":{default:"undefined",value:"",type:"boolean",description:"Activate the component when the activator is clicked.",description_zh:"单击激活器时激活组件。"},"open-on-focus":{default:"undefined",value:"",type:"boolean",description:"Activate the component when the activator is focused.",description_zh:"当激活器聚焦时激活组件。"},"open-on-hover":{default:"false",value:"",type:"boolean",description:"Activate the component when the activator is hovered.",description_zh:"当激活器悬停时激活组件。"},origin:{default:"center center",value:"",type:"Anchor / auto / overlap",description:"Sets the origin of the animation on the element. You can explore more for transition origin on the MDN documentation",description_zh:"设置元素上的动画原点。您可以在 MDN 文档上浏览更多 for transition origin"},persistent:{default:"false",value:"",type:"boolean",description:"Clicking on the outside of an element or pressing the esc key will not close it.",description_zh:"点击元素外面或按下 esc 键将不会关闭它。"},"retain-focus":{default:"true",value:"",type:"boolean",description:"By default, tab focus is returned to the first child of the dialog box. Disable this option when using an external tool that requires focus, such as TinyMCE or vue-clipboard.",description_zh:"默认情况下，制表符焦点将返回到对话框的第一个子级。在使用需要焦点的外部工具（如 TinyMCE 或 vue-clipboard）时禁用此选项。"},scrim:{default:"true",value:"",type:"string | boolean",description:"Accepts true/false to enable background, and string to define color.",description_zh:"接受 true/false 以启用背景，接受 string 以定义颜色。"},scrollable:{default:"false",value:"",type:"boolean",description:"When set to true, expect a v-card and a v-card-text component, with the specified height. For more information, check out the scrollable example.",description_zh:"当设置为 true 时，期望有一个 v-card 和一个 v-card-text 组件，并有指定的高度。更多信息，请查看 可滚动示例。"},"scroll-strategy":{default:"block",value:"",type:"none / close / block / reposition / ScrollStrategyFn",description:"Strategy used when the component is activate and user scrolls.",description_zh:"激活组件且用户滚动时使用的策略。"},target:{default:"undefined",value:"",type:" / Element / 'parent' / 'cursor' / (string & {}) / ComponentPublicInstance / [number, number]",description:"For locationStrategy=“connected”, specify an element or array of x,y coordinates that the overlay should position itself relative to. This will be the activator element by default.",description_zh:"对于 locationStrategy=“connected”，指定一个元素或 x，y 坐标数组，叠加应相对于该元素或数组定位自身。默认情况下，这将是 activator 元素。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},transition:{default:"bottom-sheet-transition",value:"",type:"  | { component: Component }  | string  | boolean  | (TransitionProps & { component: Component })",description:"Sets the component transition. Can be one of the built in or custom transition.",description_zh:"设置组件过渡。可以是内置过渡或自定义过渡之一。"},width:{default:"undefined",value:"",type:"string | number",description:"Sets the width of the component.",description_zh:"设定组件的宽度。"},"z-index":{default:"2400",value:"",type:"string | number",description:"The z-index used for the component.",description_zh:"用于组件的 z 索引。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-bottom-sheet/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-bottom-sheet/#links",typeDetail:{},events:[{name:"update:modelValue",description:"An event that is raised when a component's model-value changes.",description_zh:"当组件的 model-value 更改时引发的事件。",params:"[boolean]",value:""}],methods:[],slots:[{name:"activator",description:"When used, will activate the component when clicked (or hover for specific components). This manually stops the event propagation. Without this slot, if you open the component through its model, you will need to manually stop the event propagation.",description_zh:"使用时，将在单击时激活组件（或将鼠标悬停在特定组件上）。这将手动停止事件传播。如果没有此插槽，如果通过其模型打开组件，则需要手动停止事件传播。",params:"{\n  isActive: boolean\n  props: Record<string, any>\n  targetRef: TemplateRef\n}"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{ isActive: Ref<boolean> }"}]},Ue={name:"VBreadcrumbs",props:{"active-class":{default:"undefined",value:"",type:"string",description:"The class applied to the component when it is in an active state.",description_zh:"当组件处于活动状态时应用于组件的类。"},"active-color":{default:"undefined",value:"",type:"string",description:"The applied color when the component is in an active state.",description_zh:"组件处于活动状态时应用的颜色。"},"bg-color":{default:"undefined",value:"",type:"string",description:"Applies specified color to the control’s background. Used on components that also support the color prop. - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件的背景。用于也支持 color 属性的组件。- 支持实用程序颜色（例如成功或紫色）或 CSS 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},density:{default:"default",value:"",type:"default / comfortable / compact",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。"},disabled:{default:"false",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},divider:{default:"/",value:"",type:"string",description:"Specifies the separator between items.",description_zh:"指定项之间的分隔字符。"},icon:{default:"undefined",value:"",type:"any",description:"Assign a v-icon icon to the button.",description_zh:"为按钮指定一个 v-icon 图标。"},":items":{default:"[]",value:"",type:"(  | string  | (Partial<LinkProps> & { title: string; disabled: boolean }))[]",description:"An array of strings or objects used for automatically generating children components.",description_zh:"用于自动生成子组件的字符串或对象的数组。",required:!0},rounded:{default:"undefined",value:"",type:"string | number | boolean",description:"Applies the border-radius style to the specified component. You can get more information about this on the Corner Radius of Borders page",description_zh:"对指定的组件应用 border-radius 样式。您可以在 边框的圆角半径页面 获取更多有关信息"},tag:{default:"ul",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-breadcrumbs/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-breadcrumbs/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:""},{name:"divider",description:"The slot used for dividers.",description_zh:"用于分隔线的插槽。",params:"{\n  item: string | (Partial<LinkProps> & { title: string; disabled: boolean })\n  index: number\n}"},{name:"item",description:"Define a custom item appearance.",description_zh:"定义自定义项外观。",params:"{\n  item: Partial<LinkProps> & { title: string; disabled: boolean }\n  index: number\n}"},{name:"prepend",description:"The slot used for prepend content.",description_zh:"用于前置内容的插槽。",params:""},{name:"title",description:"The slot used to display the title of each breadcrumb.",description_zh:"用于显示每个痕迹导航的标题的插槽。",params:"{\n  item: Partial<LinkProps> & { title: string; disabled: boolean }\n  index: number\n}"}],suggestions:["v-breadcrumbs-item","v-breadcrumbs-divider"]},We={name:"VBreadcrumbsDivider",props:{divider:{default:"undefined",value:"",type:"string | number",description:"Specifies the separator between items.",description_zh:"指定项之间的分隔字符。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-breadcrumbs-divider/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-breadcrumbs-divider/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},Ke={name:"VBreadcrumbsItem",props:{active:{default:"false",value:"",type:"boolean",description:"Control the active state of the item. This is typically used to highlight components.",description_zh:"控制项的 active 状态。这通常用于高亮显示组件。"},"active-class":{default:"undefined",value:"",type:"string",description:"The class applied to the component when it matches the current route. Find more information about the active-class prop on the vue-router documentation.",description_zh:"当组件与当前路由匹配时应用于组件的类。在 vue-router 文档中找到更多关于 active-class 属性的信息。"},"active-color":{default:"undefined",value:"",type:"string",description:"The applied color when the component is in an active state.",description_zh:"组件处于活动状态时应用的颜色。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},disabled:{default:"false",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},exact:{default:"false",value:"",type:"boolean",description:"Exact match link. Without this link, '/' will match each route. You can read more exact props in the vue-router documentation.",description_zh:"完全匹配链接。如果没有这个链接，‘/’ 将匹配每个路由。你能够在 vue-router 文档浏览更多 exact prop。"},href:{default:"undefined",value:"",type:"string",description:"Specify the component as the anchor and apply the href attribute.",description_zh:"指定组件为锚点并应用 href 属性。"},replace:{default:"false",value:"",type:"boolean",description:"Setting replace prop will call router.replace() instead of router.push() when clicked, so the navigation will not leave a history record. You can find more information about the replace prop on the vue-router documentation.",description_zh:"设置 replace prop 会在点击时调用 router.replace（） 而不是 router.push（），因此导航不会留下历史记录。你可以在 vue-router 文档中找到更多关于 replace 属性的信息。"},tag:{default:"li",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"},title:{default:"undefined",value:"",type:"string",description:"Specify a title text for the component.",description_zh:"指定组件的标题文本。"},to:{default:"undefined",value:"",type:"RouteLocationRaw",description:"Indicates the target route of the link. You can read more about to props in the vue-router documentation.",description_zh:"表示链接的目标路由。你可以在 vue-router 文档浏览更多 to prop。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-breadcrumbs-item/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-breadcrumbs-item/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},Xe={name:"VBtn",props:{active:{default:"undefined",value:"",type:"boolean",version:"",description:"Controls the active state of the item. This is typically used to highlight the component.",description_zh:"控制项的活动状态。这通常用于突出显示组件。",required:!1},"active-color":{default:"undefined",value:"",type:"string",version:"",description:"The applied color when the component is in an active state.",description_zh:"组件处于活动状态时应用的颜色。",required:!1},"append-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Creates a v-icon component after default content in the append slot.",description_zh:"在附加插槽中的默认内容之后创建一个 v 图标组件。",required:!1},"base-color":{default:"undefined",value:"",type:"string",version:"",description:"Sets the color of component when not focused.",description_zh:"设置未聚焦时组件的颜色。",required:!1},block:{default:"false",value:"",type:"boolean",version:"",description:"Expands the button to 100% of available space.",description_zh:"将按钮扩展到可用空间的 100%。",required:!1},border:{default:"false",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be xs, sm, md, lg, xl.",description_zh:"指定应用于组件的 border-radius。这可以是 xs、sm、md、lg、xl。",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},density:{default:"'default'",value:"",type:"default / comfortable / compact",version:"",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。",required:!1},disabled:{default:"false",value:"",type:"boolean",version:"",description:"Removes the ability to click or target the component.",description_zh:"删除单击组件或定位组件的功能。",required:!1},elevation:{default:"undefined",value:"",type:"string | number",version:"",description:"Designates an elevation applied to the component between 0 and 24. You can find more information on the elevation page.",description_zh:"指定应用于组件的 0 到 24 之间的高程。您可以在海拔页面上找到更多信息。",required:!1},exact:{default:"false",value:"",type:"boolean",version:"",description:"Exactly match the link. Without this, ‘/’ will match every route. You can find more information about the exact prop on the vue-router documentation.",description_zh:"与链接完全匹配。如果没有这个，'/' 将匹配每个路由。你可以在 vue-router 文档中找到有关 exact prop 的更多信息。",required:!1},flat:{default:"false",value:"",type:"boolean",version:"",description:"Removes the button box shadow. This is different than using the ‘flat’ variant.",description_zh:"删除按钮框阴影。这与使用 'flat' 变体不同。",required:!1},height:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the height for the component.",description_zh:"设置组件的高度。",required:!1},href:{default:"undefined",value:"",type:"string",version:"",description:"Designates the component as anchor and applies the href attribute.",description_zh:"将组件指定为锚点并应用 href 属性。",required:!1},icon:{default:"false",value:"",type:"  | boolean  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Apply a specific icon using the v-icon component. The button will become round.",description_zh:"使用 v-icon 组件应用特定图标。按钮将变为圆形。",required:!1},loading:{default:"false",value:"",type:"string | boolean",version:"",description:"Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - primary, secondary, success, info, warning, error) or a Boolean which uses the component color (set by color prop - if it’s supported by the component) or the primary color.",description_zh:"显示线性进度条。可以是指定应用于进度条的颜色的 String（任何材料颜色或主题颜色 - primary、secondary、success、info、warning、error），也可以是使用组件颜色（由 color 属性设置 - 如果组件支持）或主要颜色的 Boolean。",required:!1},location:{default:"undefined",value:"",type:"Anchor",version:"",description:"Specifies the component’s location. Can combine by using a space separated string.",description_zh:"指定组件的位置。可以使用空格分隔的字符串进行组合。",required:!1},"max-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum height for the component.",description_zh:"设置组件的最大高度。",required:!1},"max-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。",required:!1},"min-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum height for the component.",description_zh:"设置组件的最小高度。",required:!1},"min-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum width for the component.",description_zh:"设置组件的最小宽度。",required:!1},position:{default:"undefined",value:"",type:"static / relative / fixed / absolute / sticky",version:"",description:"Sets the position for the component.",description_zh:"设置零部件的位置。",required:!1},"prepend-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Creates a v-icon component in the prepend slot before default content.",description_zh:"在默认内容之前的前置插槽中创建 v 图标组件。",required:!1},readonly:{default:"false",value:"",type:"boolean",version:"",description:"Puts the button in a readonly state. Cannot be clicked or navigated to by keyboard.",description_zh:"将按钮置于只读状态。无法通过键盘单击或导航到。",required:!1},replace:{default:"false",value:"",type:"boolean",version:"",description:"Setting replace prop will call router.replace() instead of router.push() when clicked, so the navigation will not leave a history record. You can find more information about the replace prop on the vue-router documentation.",description_zh:"设置 replace 属性将在单击时调用 router.replace（） 而不是 router.push（），因此导航不会留下历史记录。你可以在 vue-router 文档中找到有关 replace prop 的更多信息。",required:!1},ripple:{default:"true",value:"",type:"boolean | { class: string }",version:"",description:"Applies the v-ripple directive.",description_zh:"应用 v-ripple 指令。",required:!1},rounded:{default:"undefined",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. Find more information on available border radius classes on the Border Radius page.",description_zh:"指定应用于组件的 border-radius。这可以是 0、xs、sm、true、lg、xl、pill、circle 和 shaped。在 Border Radius 页面上查找有关可用边界半径类的更多信息。",required:!1},"selected-class":{default:"undefined",value:"",type:"string",version:"",description:"Configure the active CSS class applied when an item is selected.",description_zh:"配置在选择项目时应用的活动 CSS 类。",required:!1},size:{default:"'default'",value:"",type:"string | number",version:"",description:"Sets the height and width of the component. Default unit is px. Can also use the following predefined sizes: x-small, small, default, large, and x-large.",description_zh:"设置组件的高度和宽度。默认单位为 px。还可以使用以下预定义大小：x-small、small、default、large 和 x-large。",required:!1},slim:{default:"false",value:"",type:"boolean",version:"",description:"Reduces padding to 0 8px.",description_zh:"将填充减少到 0 8px。",required:!1},stacked:{default:"false",value:"",type:"boolean",version:"",description:"Displays the button as a flex-column.",description_zh:"将按钮显示为 flex 列。",required:!1},symbol:{default:"undefined",value:"",type:"any",version:"",description:"The Symbol used to hook into group functionality for components like v-btn-toggle and v-bottom-navigation.",description_zh:"用于钩入组件（如 v-btn-toggle 和 v-bottom-navigation）的组功能的 Symbol。",required:!1},tag:{default:"'button'",value:"",type:"string",version:"",description:"Specify a custom tag used on the root element.",description_zh:"指定根元素上使用的自定义标记。",required:!1},text:{default:"undefined",value:"",type:"string",version:"v3.2.0",description:"Specify content text for the component.",description_zh:"指定组件的内容文本。",required:!1},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},tile:{default:"false",value:"",type:"boolean",version:"",description:"Removes any applied border-radius from the component.",description_zh:"从组件中删除任何应用的 border-radius。",required:!1},to:{default:"undefined",value:"",type:"RouteLocationRaw",version:"",description:"Denotes the target route of the link. You can find more information about the to prop on the vue-router documentation.",description_zh:"表示链路的目标路由。你可以在 vue-router 文档中找到有关 to prop 的更多信息。",required:!1},value:{default:"undefined",value:"",type:"any",version:"",description:"The value used when the component is selected in a group. If not provided, a unique ID will be used.",description_zh:"在组中选择组件时使用的值。如果未提供，将使用唯一 ID。",required:!1},variant:{default:"'elevated'",value:"",type:"flat / text / elevated / tonal / outlined / plain",version:"",description:"Applies a distinct style to the component.",description_zh:"将不同的样式应用于组件。",required:!1},width:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the width for the component.",description_zh:"设置组件的宽度。",required:!1}},link:"https://vuetifyjs.com/en/api/v-btn/",link_zh:"https://vuetifyjs.com/en/api/v-btn/",typeDetail:{},events:[{name:"group:selected",description:"Event that is emitted when an item is selected within a group.",description_zh:"在组中选择项时发出的事件。",params:"[{ value: boolean }]",value:""},{name:"click",description:"Event that is emitted when the component is clicked.",description_zh:"在单击组件时发出的事件。",params:"MouseEvent",value:"",required:!0}],methods:[],slots:[{name:"append",description:"Adds an item inside the input and after input content.",description_zh:"在 input 内容内和 After input 内容中添加一个项目。"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。"},{name:"loader",description:"Slot for custom loader (displayed when loading prop is equal to true).",description_zh:"自定义加载器的插槽（当加载 prop 等于 true 时显示）。"},{name:"prepend",description:"Adds an item outside the input and before input content.",description_zh:"在输入内容之外和之前添加项目。"}],exposed:[{name:"group",description:"Internal representation when used in VBtnToggle.",description_zh:"Internal representation when used in VBtnToggle.",detail:"{\n  id: number\n  isSelected: boolean\n  isFirst: boolean\n  isLast: boolean\n  toggle: () => void\n  select: (value: boolean) => void\n  selectedClass: false | (string | undefined)[]\n  value: unknown\n  disabled: boolean | undefined\n  group: {\n    register: (item: GroupItem, cmp: ComponentInternalInstance) => void\n    unregister: (id: number) => void\n    select: (id: number, value: boolean) => void\n    selected: readonly number[]\n    isSelected: (id: number) => boolean\n    prev: () => void\n    next: () => void\n    selectedClass: string | undefined\n    items: { id: number; value: unknown; disabled: boolean | undefined }[]\n    disabled: boolean | undefined\n    getItemIndex: (value: unknown) => number\n  }\n}"}]},Je={name:"VBtnToggle",props:{"base-color":{default:"undefined",value:"",type:"string",version:"",description:"Sets the color of component when not focused.",description_zh:"设置未聚焦时组件的颜色。",required:!1},border:{default:"false",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be xs, sm, md, lg, xl.",description_zh:"指定应用于组件的 border-radius。这可以是 xs、sm、md、lg、xl。",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},density:{default:"'default'",value:"",type:"default / comfortable / compact",version:"",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。",required:!1},disabled:{default:"false",value:"",type:"boolean",version:"",description:"Puts all children components into a disabled state.",description_zh:"将所有子组件置于禁用状态。",required:!1},divided:{default:"false",value:"",type:"boolean",version:"",description:"Add dividers between children v-btn components.",description_zh:"在子 v-btn 组件之间添加分隔线。",required:!1},elevation:{default:"undefined",value:"",type:"string | number",version:"",description:"Designates an elevation applied to the component between 0 and 24. You can find more information on the elevation page.",description_zh:"指定应用于组件的 0 到 24 之间的高程。您可以在海拔页面上找到更多信息。",required:!1},mandatory:{default:"false",value:"",type:"boolean / force",version:"",description:"Forces at least one item to always be selected (if available).",description_zh:"强制始终选择至少一个项目（如果可用）。",required:!1},":max":{default:"undefined",value:"",type:"number",version:"",description:"Sets a maximum number of selections that can be made.",description_zh:"设置可以进行的最大选择数。",required:!1},":v-model":{default:"undefined",value:"",type:"unknown",version:"",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v-model 值。如果 component 支持 multiple prop，则默认为空数组。",required:!0},multiple:{default:"false",value:"",type:"boolean",version:"",description:"Allows one to select multiple items.",description_zh:"允许选择多个项目。",required:!1},rounded:{default:"undefined",value:"",type:"string | number | boolean",version:"",description:"Round edge buttons.",description_zh:"圆边按钮。",required:!1},"selected-class":{default:"undefined",value:"",type:"string",version:"",description:"Configure the active CSS class applied when an item is selected.",description_zh:"配置在选择项目时应用的活动 CSS 类。",required:!1},tag:{default:"'div'",value:"",type:"string",version:"",description:"Specify a custom tag used on the root element.",description_zh:"指定根元素上使用的自定义标记。",required:!1},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},tile:{default:"false",value:"",type:"boolean",version:"",description:"Removes the component’s border-radius.",description_zh:"删除组件的 border-radius。",required:!1},variant:{default:"'elevated'",value:"",type:"flat / elevated / tonal / outlined / text / plain",version:"",description:"Applies a distinct style to the component.",description_zh:"将不同的样式应用于组件。",required:!1}},link:"https://vuetifyjs.com/en/api/v-btn-toggle/",link_zh:"https://vuetifyjs.com/en/api/v-btn-toggle/",typeDetail:{},events:[{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件的模型更改时发出的事件。",params:"[unknown]",value:""}],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{\n  isSelected: (id: number) => boolean\n  select: (id: number, value: boolean) => void\n  selected: Ref<readonly number[]>\n  next: () => void\n  prev: () => void\n}"}],exposed:[{name:"next",description:"Activates the next button.",description_zh:"Activates the next button.",detail:"() => void"},{name:"prev",description:"Activates the previous button.",description_zh:"Activates the previous button.",detail:"() => void"},{name:"select",description:"Selects a button by index, the second parameter is a boolean to indicate if the button should be selected or not.",description_zh:"Selects a button by index, the second parameter is a boolean to indicate if the button should be selected or not.",detail:"(id: number, value: boolean) => void"}],suggestions:["v-btn","v-btn-group"]},Qe={name:"VBtnGroup",props:{border:{default:"false",value:"",type:"string | number | boolean",description:"Apply a border style to the component.",description_zh:"应用边框样式到组件。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},density:{default:"default",value:"",type:"default / comfortable / compact",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。"},divided:{default:"false",value:"",type:"boolean",description:"Add dividers between children v-btn components.",description_zh:"在子 v-btn 组件之间添加分隔线。"},elevation:{default:"undefined",value:"",type:"string | number",description:"The elevation of the component is acceptable from 0 to 24. You can read more on the Elevation page.",description_zh:"组件的海拔可接受 0 到 24 之间的值。你可以在 elevation page 浏览更多信息。"},rounded:{default:"undefined",value:"",type:"string | number | boolean",description:"Applies the border-radius style to the specified component. You can get more information about this on the Corner Radius of Borders page",description_zh:"对指定的组件应用 border-radius 样式。您可以在 边框的圆角半径页面 获取更多有关信息"},tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},variant:{default:"elevated",value:"",type:"flat / elevated / tonal / outlined / text / plain",description:"Applies a distinct style to the component.",description_zh:"对组件应用不同的样式。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-btn-group/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-btn-group/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},n={name:"VCalendar",props:{"allowed-dates":{default:"undefined",value:"",type:"unknown[] | ((date: unknown) => boolean)",version:"",description:"Determines which dates are selectable.",description_zh:"确定可选择的日期。",required:!1},day:{default:"{}",value:"",type:"unknown",version:"",description:"Represents the specific day associated with the interval.",description_zh:"表示与间隔关联的特定日期。",required:!1},":day-index":{default:"undefined",value:"",type:"number",version:"",description:"Index of the day this interval is a part of, in a week or month view.",description_zh:"此间隔所属的日期的索引，在周或月视图中。",required:!1},disabled:{default:"false",value:"",type:"boolean",version:"",description:"Removes the ability to click or target the component.",description_zh:"删除单击组件或定位组件的功能。",required:!1},"display-value":{default:"undefined",value:"",type:"unknown",version:"",description:"Value to display for the component, possibly a formatted date.",description_zh:"要为组件显示的值，可能是格式化的日期。",required:!1},events:{default:"undefined",value:"",type:"any[]",version:"",description:"Array of events specific to this interval.",description_zh:"特定于此间隔的事件数组。",required:!1},"first-day-of-week":{default:"undefined",value:"",type:"string | number",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},"hide-day-header":{default:"false",value:"",type:"boolean",version:"",description:"Determines whether the day header is visible in the calendar day view.",description_zh:"确定日标题在日历日视图中是否可见。",required:!1},"hide-header":{default:"false",value:"",type:"boolean",version:"",description:"Determines whether the header is hidden in the calendar view.",description_zh:"确定标题是否在日历视图中隐藏。",required:!1},"hide-week-number":{default:"false",value:"",type:"boolean",version:"",description:"Toggles the display of week numbers in a calendar view.",description_zh:"切换日历视图中周数的显示。",required:!1},":interval-divisions":{default:"2",value:"",type:"number",version:"",description:"Number of subdivisions within this interval.",description_zh:"此区间内的细分数。",required:!1},":interval-duration":{default:"60",value:"",type:"number",version:"",description:"Duration of this specific interval in minutes.",description_zh:"此特定间隔的持续时间（以分钟为单位）。",required:!1},"interval-format":{default:"'fullTime12h'",value:"",type:"string | Function",version:"",description:"Formatting rule for displaying the interval, as a string or function.",description_zh:"用于将间隔显示为字符串或函数的格式设置规则。",required:!1},":interval-height":{default:"48",value:"",type:"number",version:"",description:"Height of the interval in pixels in the calendar view.",description_zh:"日历视图中的间隔高度（以像素为单位）。",required:!1},":intervals":{default:"24",value:"",type:"number",version:"",description:"Total number of intervals in a day view.",description_zh:"日视图中的间隔总数。",required:!1},":interval-start":{default:"0",value:"",type:"number",version:"",description:"Starting time for this specific interval.",description_zh:"此特定间隔的开始时间。",required:!1},max:{default:"undefined",value:"",type:"unknown",version:"",description:"Maximum date or value that can be selected.",description_zh:"可以选择的最大日期或值。",required:!1},min:{default:"undefined",value:"",type:"unknown",version:"",description:"Minimum date or value that can be selected.",description_zh:"可以选择的最小日期或值。",required:!1},"v-model":{default:"undefined",value:"",type:"unknown[]",version:"",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v-model 值。如果 component 支持 multiple prop，则默认为空数组。",required:!1},month:{default:"undefined",value:"",type:"string | number",version:"",description:"Specifies the month for the calendar view.",description_zh:"指定日历视图的月份。",required:!1},"next-icon":{default:"'$next'",value:"",type:"string",version:"",description:"The icon to use for the next button.",description_zh:"用于 Next （下一步） 按钮的图标。",required:!1},"prev-icon":{default:"'$prev'",value:"",type:"string",version:"",description:"The icon to use for the prev button.",description_zh:"用于 prev 按钮的图标。",required:!1},"show-adjacent-months":{default:"false",value:"",type:"boolean",version:"",description:"Shows or hides days from adjacent months.",description_zh:"显示或隐藏相邻月份的日期。",required:!1},text:{default:"'$vuetify.calendar.today'",value:"",type:"string",version:"",description:"Specify content text for the component.",description_zh:"指定组件的内容文本。",required:!1},title:{default:"undefined",value:"",type:"string",version:"",description:"Specify a title text for the component.",description_zh:"指定组件的标题文本。",required:!1},"view-mode":{default:"'month'",value:"",type:"month / day / week",version:"",description:"The current view mode of the calendar.",description_zh:"日历的当前视图模式。",required:!1},weekdays:{default:"[0, 1, 2, 3, 4, 5, 6]",value:"",type:"number[]",version:"",description:"Specifies which days of the week to display.",description_zh:"指定要显示的星期几。",required:!1},"weeks-in-month":{default:"'dynamic'",value:"",type:"dynamic / static",version:"",description:"A dynamic number of weeks in a month will grow and shrink depending on how many days are in the month. A static number always shows 7 weeks.",description_zh:"一个月中的动态周数将根据该月的天数而增加和减少。静态数字始终显示 7 周。",required:!1},year:{default:"undefined",value:"",type:"string | number",version:"",description:"Specifies the year for the calendar view.",description_zh:"指定日历视图的年份。",required:!1}},link:"https://vuetifyjs.com/en/api/v-calendar/",link_zh:"https://vuetifyjs.com/en/api/v-calendar/",typeDetail:{},events:[{name:"next",description:"Emitted when moving to the next time period.",description_zh:"移动到下一个时间段时发出。",params:"any[]",value:""},{name:"prev",description:"Emitted when moving to the previous time period.",description_zh:"移动到上一个时间段时发出。",params:"any[]",value:""},{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件的模型更改时发出的事件。",params:"any[]",value:""}],methods:[],slots:[{name:"event",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{ day: Object; allDay: boolean; event: Record<string, unknown> }"},{name:"header",description:"Slot for custom header content.",description_zh:"自定义标题内容的插槽。",params:"{ title: string }"}],exposed:[{name:"daysInMonth",description:"Provides data about the days in the selected month.",description_zh:"Provides data about the days in the selected month.",detail:"{\n  date: unknown\n  isoDate: string\n  formatted: string\n  year: number\n  month: number\n  isDisabled: boolean\n  isWeekStart: boolean\n  isWeekEnd: boolean\n  isToday: boolean\n  isAdjacent: boolean\n  isHidden: boolean\n  isStart: boolean\n  isSelected: boolean\n  isEnd: boolean\n  isSame: boolean\n  localized: string\n}[]"},{name:"daysInWeek",description:"Provides data about the days in the selected week.",description_zh:"Provides data about the days in the selected week.",detail:"{\n  date: unknown\n  isoDate: string\n  formatted: string\n  year: number\n  month: number\n  isDisabled: boolean\n  isWeekStart: boolean\n  isWeekEnd: boolean\n  isToday: boolean\n  isAdjacent: boolean\n  isHidden: boolean\n  isStart: boolean\n  isSelected: boolean\n  isEnd: boolean\n  isSame: boolean\n  localized: string\n}[]"},{name:"genDays",description:"Generates day objects based on provided dates.",description_zh:"Generates day objects based on provided dates.",detail:"(\n  days: unknown[],\n  today: unknown,\n) => {\n  date: unknown\n  isoDate: string\n  formatted: string\n  year: number\n  month: number\n  isDisabled: boolean\n  isWeekStart: boolean\n  isWeekEnd: boolean\n  isToday: boolean\n  isAdjacent: boolean\n  isHidden: boolean\n  isStart: boolean\n  isSelected: boolean\n  isEnd: boolean\n  isSame: boolean\n  localized: string\n}[]"}]},o={name:"VCalendarDay",props:{day:{default:"{}",value:"",type:"unknown",version:"",description:"Represents the specific day associated with the interval.",description_zh:"表示与间隔关联的特定日期。",required:!1},":day-index":{default:"undefined",value:"",type:"number",version:"",description:"Index of the day this interval is a part of, in a week or month view.",description_zh:"此间隔所属的日期的索引，在周或月视图中。",required:!1},events:{default:"undefined",value:"",type:"any[]",version:"",description:"Array of events specific to this interval.",description_zh:"特定于此间隔的事件数组。",required:!1},"hide-day-header":{default:"false",value:"",type:"boolean",version:"",description:"Determines whether the day header is visible in the calendar day view.",description_zh:"确定日标题在日历日视图中是否可见。",required:!1},":interval-divisions":{default:"2",value:"",type:"number",version:"",description:"Number of subdivisions within this interval.",description_zh:"此区间内的细分数。",required:!1},":interval-duration":{default:"60",value:"",type:"number",version:"",description:"Duration of this specific interval in minutes.",description_zh:"此特定间隔的持续时间（以分钟为单位）。",required:!1},"interval-format":{default:"'fullTime12h'",value:"",type:"string | Function",version:"",description:"Formatting rule for displaying the interval, as a string or function.",description_zh:"用于将间隔显示为字符串或函数的格式设置规则。",required:!1},":interval-height":{default:"48",value:"",type:"number",version:"",description:"Height of the interval in pixels in the calendar view.",description_zh:"日历视图中的间隔高度（以像素为单位）。",required:!1},":intervals":{default:"24",value:"",type:"number",version:"",description:"Specifies the total number of time intervals for the day in the calendar view.",description_zh:"指定日历视图中一天的时间间隔总数。",required:!1},":interval-start":{default:"0",value:"",type:"number",version:"",description:"Starting time for this specific interval.",description_zh:"此特定间隔的开始时间。",required:!1}},link:"https://vuetifyjs.com/en/api/v-calendar-day/",link_zh:"https://vuetifyjs.com/en/api/v-calendar-day/",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。"}],exposed:[{name:"intervals",description:"Computed reference containing details about each interval in the day view.",description_zh:"Computed reference containing details about each interval in the day view.",detail:"number[]"}]},a={name:"VCalendarHeader",props:{"next-icon":{default:"$next",value:"",type:"string",description:"The icon to use for the next button.",description_zh:"用于下一个按钮的图标。"},"prev-icon":{default:"$prev",value:"",type:"string",description:"The icon to use for the prev button.",description_zh:"用于上一个按钮的图标。"},text:{default:"$vuetify.calendar.today",value:"",type:"string",description:"Sets the content text of the component.",description_zh:"设置组件的内容文本。"},title:{default:"undefined",value:"",type:"string",description:"Specify a title text for the component.",description_zh:"指定组件的标题文本。"},"view-mode":{default:"month",value:"",type:"month / week / day",description:"The current view mode of the calendar.",description_zh:"日历的当前视图模式。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-calendar-header/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-calendar-header/#links",typeDetail:{},events:[{name:"click:next",description:"Event emitted when clicking the next button.",description_zh:"单击“下一步”按钮时发出的事件。",params:"[]",value:""},{name:"click:prev",description:"Event emitted when clicking the prev button.",description_zh:"单击上一个按钮时发出的事件。",params:"[]",value:""},{name:"click:toToday",description:"Event emitted when clicking the today button.",description_zh:"单击“今天”按钮时发出的事件。",params:"[]",value:""}],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},r={name:"VCalendarInterval",props:{day:{default:"{}",value:"",type:"unknown",version:"",description:"Represents the specific day associated with the interval.",description_zh:"表示与间隔关联的特定日期。",required:!1},":day-index":{default:"undefined",value:"",type:"number",version:"",description:"Index of the day this interval is a part of, in a week or month view.",description_zh:"此间隔所属的日期的索引，在周或月视图中。",required:!1},events:{default:"undefined",value:"",type:"any[]",version:"",description:"Array of events specific to this interval.",description_zh:"特定于此间隔的事件数组。",required:!1},":index":{default:"undefined",value:"",type:"number",version:"",description:"Index or position of the interval in the day view.",description_zh:"日视图中间隔的索引或位置。",required:!1},":interval-divisions":{default:"2",value:"",type:"number",version:"",description:"Number of subdivisions within this interval.",description_zh:"此区间内的细分数。",required:!1},":interval-duration":{default:"60",value:"",type:"number",version:"",description:"Duration of this specific interval in minutes.",description_zh:"此特定间隔的持续时间（以分钟为单位）。",required:!1},"interval-format":{default:"'fullTime12h'",value:"",type:"string | Function",version:"",description:"Formatting rule for displaying the interval, as a string or function.",description_zh:"用于将间隔显示为字符串或函数的格式设置规则。",required:!1},":interval-height":{default:"48",value:"",type:"number",version:"",description:"Height of the interval in pixels in the calendar view.",description_zh:"日历视图中的间隔高度（以像素为单位）。",required:!1},":interval-start":{default:"0",value:"",type:"number",version:"",description:"Starting time for this specific interval.",description_zh:"此特定间隔的开始时间。",required:!1}},link:"https://vuetifyjs.com/en/api/v-calendar-interval/",link_zh:"https://vuetifyjs.com/en/api/v-calendar-interval/",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。"}],exposed:[{name:"interval",description:"Computed reference for the interval, including label, start and end times, and associated events.",description_zh:"Computed reference for the interval, including label, start and end times, and associated events.",detail:"{ label: string; start: unknown; end: unknown; events: any[] }"}]},s={name:"VCalendarIntervalEvent",props:{"all-day":{default:"false",value:"",type:"boolean",description:"Indicates whether the event spans the entire day.",description_zh:"指示事件是否跨越一整天。"},event:{default:"undefined",value:"",type:"unknown",description:"The event object associated with this calendar interval.",description_zh:"与此日历间隔关联的事件对象。"},interval:{default:"undefined",value:"",type:"unknown",description:"The specific time interval this event is associated with.",description_zh:"与此事件关联的特定时间间隔。"},":interval-divisions":{default:"undefined",value:"",type:"number",description:"Number of subdivisions within the interval for this event.",description_zh:"此事件间隔内的细分数。"},":interval-duration":{default:"undefined",value:"",type:"number",description:"Duration of the interval in which this event occurs, in minutes.",description_zh:"发生此事件的时间间隔的持续时间（以分钟为单位）。"},":interval-height":{default:"undefined",value:"",type:"number",description:"Height of the interval in the calendar view, in pixels.",description_zh:"日历视图中间隔的高度（以像素为单位）。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-calendar-interval-event/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-calendar-interval-event/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},l={name:"VCalendarMonthDay",props:{active:{default:"false",value:"",type:"boolean",description:"Control the active state of the item. This is typically used to highlight components.",description_zh:"控制项的 active 状态。这通常用于高亮显示组件。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},day:{default:"undefined",value:"",type:"unknown",description:"Represents the specific day in the month view of the calendar.",description_zh:"表示日历的月视图中的特定日期。"},disabled:{default:"false",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},events:{default:"undefined",value:"",type:"any[]",description:"Array of events associated with this specific day.",description_zh:"与此特定日期关联的事件数组。"},title:{default:"undefined",value:"",type:"string | number",description:"Specify a title text for the component.",description_zh:"指定组件的标题文本。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-calendar-month-day/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-calendar-month-day/#links",typeDetail:{},events:[],methods:[],slots:[{name:"content",description:"Slot for custom content related to the day in the month view.",description_zh:"与月视图中的日期相关的自定义内容的插槽。",params:""},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:""},{name:"event",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{ day: Object; allDay: boolean; event: Record<string, unknown> }"},{name:"title",description:"Slot for the component’s title content.",description_zh:"组件标题内容的插槽。",params:"{ title: string | number }"}]},Ze={name:"VCard",props:{"append-avatar":{default:"undefined",value:"",type:"string",description:"Appends a v-avatar component after default content in the append slot.",description_zh:"在 append 插槽中的默认内容后附加一个 v-avatar 组件。"},"append-icon":{default:"undefined",value:"",type:"any",description:"Creates a v-icon component after default content in the append slot.",description_zh:"在追加槽中的默认内容之后创建一个 v-icon 组件。"},border:{default:"false",value:"",type:"string | number | boolean",description:"Apply a border style to the component.",description_zh:"应用边框样式到组件。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},density:{default:"default",value:"",type:"default / comfortable / compact",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。"},disabled:{default:"false",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},elevation:{default:"undefined",value:"",type:"string | number",description:"The elevation of the component is acceptable from 0 to 24. You can read more on the Elevation page.",description_zh:"组件的海拔可接受 0 到 24 之间的值。你可以在 elevation page 浏览更多信息。"},exact:{default:"false",value:"",type:"boolean",description:"Exact match link. Without this link, '/' will match each route. You can read more exact props in the vue-router documentation.",description_zh:"完全匹配链接。如果没有这个链接，‘/’ 将匹配每个路由。你能够在 vue-router 文档浏览更多 exact prop。"},flat:{default:"false",value:"",type:"boolean",description:"Remove the elevation of the card.",description_zh:"移除卡片的海拔。"},height:{default:"undefined",value:"",type:"string | number",description:"Sets the height of the component.",description_zh:"设定组件的高度。"},hover:{default:"false",value:"",type:"boolean",description:"Applies 4dp of elevation when hovered (default 2dp). You can find more information on the elevation page.",description_zh:"悬停时应用 4dp 的高度（默认为 2dp）。您可以在提升页面上找到更多信息。"},href:{default:"undefined",value:"",type:"string",description:"Specify the component as the anchor and apply the href attribute.",description_zh:"指定组件为锚点并应用 href 属性。"},image:{default:"undefined",value:"",type:"string",description:"Apply a specific background image to the component.",description_zh:"将特定背景图像应用于组件。"},link:{default:"undefined",value:"",type:"boolean",description:"Designates that the component is a link. This is automatic when using the href or to prop.",description_zh:"指定组件是链接。当使用 href 或 to prop 时，这是自动的。"},loading:{default:"false",value:"",type:"string | boolean",description:"Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - primary, secondary, success, info, warning, error) or a Boolean which uses the component color (set by color prop - if it’s supported by the component) or the primary color.",description_zh:"显示线性进度条。可以是指定应用于进度条的颜色的 String（任何材质颜色或主题颜色 - 主要、次要、成功、信息、警告、错误），也可以是使用组件颜色（由 color 属性设置 - 如果组件支持）或主要颜色的布尔值。"},location:{default:"undefined",value:"",type:"Anchor",description:"Specifies the component’s location. Can combine by using a space separated string.",description_zh:"指定组件的位置。可以使用空格分隔的字符串进行组合。"},"max-height":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum height of the component.",description_zh:"设定组件的最大高度。"},"max-width":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum width of the component.",description_zh:"设定组件的最大宽度。"},"min-height":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum height of the component.",description_zh:"设定组件的最小高度。"},"min-width":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum width of the component.",description_zh:"设定组件的最小宽度。"},position:{default:"undefined",value:"",type:"static / relative / fixed / absolute / sticky",description:"Sets the position for the component.",description_zh:"设置元件的位置。"},"prepend-avatar":{default:"undefined",value:"",type:"string",description:"Prepends a v-avatar component in the prepend slot before default content.",description_zh:"在默认内容之前的 prepend 插槽中预置 v-avatar 组件。"},"prepend-icon":{default:"undefined",value:"",type:"any",description:"Prepends a v-icon component to the header.",description_zh:"在标头前面附加一个 v-icon 组件。"},replace:{default:"false",value:"",type:"boolean",description:"Setting replace prop will call router.replace() instead of router.push() when clicked, so the navigation will not leave a history record. You can find more information about the replace prop on the vue-router documentation.",description_zh:"设置 replace prop 会在点击时调用 router.replace（） 而不是 router.push（），因此导航不会留下历史记录。你可以在 vue-router 文档中找到更多关于 replace 属性的信息。"},ripple:{default:"true",value:"",type:"boolean | { class: string }",description:"Apply the v-ripple directive.",description_zh:"应用 v-ripple 指令。"},rounded:{default:"undefined",value:"",type:"string | number | boolean",description:"Applies the border-radius style to the specified component. You can get more information about this on the Corner Radius of Borders page",description_zh:"对指定的组件应用 border-radius 样式。您可以在 边框的圆角半径页面 获取更多有关信息"},subtitle:{default:"undefined",value:"",type:"string | number",description:"Specify a subtitle text for the component.",description_zh:"指定组件的副标题文本。"},tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"},text:{default:"undefined",value:"",type:"string | number",description:"Sets the content text of the component.",description_zh:"设置组件的内容文本。",required:!0},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},title:{default:"undefined",value:"",type:"string | number",description:"Specify a title text for the component.",description_zh:"指定组件的标题文本。"},to:{default:"undefined",value:"",type:"RouteLocationRaw",description:"Indicates the target route of the link. You can read more about to props in the vue-router documentation.",description_zh:"表示链接的目标路由。你可以在 vue-router 文档浏览更多 to prop。"},variant:{default:"elevated",value:"",type:"text / flat / elevated / tonal / outlined / plain",description:"Applies a distinct style to the component.",description_zh:"对组件应用不同的样式。"},width:{default:"undefined",value:"",type:"string | number",description:"Sets the width of the component.",description_zh:"设定组件的宽度。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-card/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-card/#links",typeDetail:{},events:[],methods:[],slots:[{name:"actions",description:"The slot used for the card actions; located at the bottom of the card.",description_zh:"用于卡操作的插槽;位于卡片底部。",params:""},{name:"append",description:"Adds an item inside the input and after input content.",description_zh:"在 input 内容内和 After input 内容中添加一个项目。",params:""},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:""},{name:"image",description:"The slot used for the card image. This is used with the image prop.",description_zh:"用于卡映像的插槽。这与 image 属性一起使用。",params:""},{name:"item",description:"Define a custom item appearance.",description_zh:"定义自定义项外观。",params:""},{name:"loader",description:"Slot for custom loader (displayed when loading prop is equal to true).",description_zh:"自定义加载器的插槽（当加载 prop 等于 true 时显示）。",params:"{ color: string; isActive: boolean }"},{name:"prepend",description:"Adds an item outside the input and before input content.",description_zh:"在输入内容之外和之前添加项目。",params:""},{name:"subtitle",description:"Slot for the component’s subtitle content.",description_zh:"组件字幕内容的插槽。",params:""},{name:"text",description:"Slot for the component’s text content.",description_zh:"组件文本内容的插槽。",params:""},{name:"title",description:"Slot for the component’s title content.",description_zh:"组件标题内容的插槽。",params:""}],suggestions:["v-card-item","v-card-title","v-card-subtitle","v-card-text","v-card-actions"]},d={name:"VCardActions",props:{},link:"https://vuetifyjs.com/zh-Hans/api/v-card-actions/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-card-actions/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},et={name:"VCardItem",props:{"append-avatar":{default:"undefined",value:"",type:"string",description:"Appends a v-avatar component after default content in the append slot.",description_zh:"在 append 插槽中的默认内容后附加一个 v-avatar 组件。"},"append-icon":{default:"undefined",value:"",type:"any",description:"Creates a v-icon component after default content in the append slot.",description_zh:"在追加槽中的默认内容之后创建一个 v-icon 组件。"},density:{default:"default",value:"",type:"default / comfortable / compact",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。"},"prepend-avatar":{default:"undefined",value:"",type:"string",description:"Prepends a v-avatar component in the prepend slot before default content.",description_zh:"在默认内容之前的 prepend 插槽中预置 v-avatar 组件。"},"prepend-icon":{default:"undefined",value:"",type:"any",description:"Creates a v-icon component in the prepend slot before default content.",description_zh:"在默认内容前面的预置槽中创建一个 v-icon 组件。"},subtitle:{default:"undefined",value:"",type:"string | number",description:"Specify a subtitle text for the component.",description_zh:"指定组件的副标题文本。"},title:{default:"undefined",value:"",type:"string | number",description:"Specify a title text for the component.",description_zh:"指定组件的标题文本。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-card-item/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-card-item/#links",typeDetail:{},events:[],methods:[],slots:[{name:"append",description:"Adds an item inside the input and after input content.",description_zh:"在输入内容内部和之后添加一个项目。"},{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"},{name:"prepend",description:"Adds an item outside the input and before input content.",description_zh:"在输入内容之外和输入内容之前添加一个项目。"},{name:"subtitle",description:"Slot for the component’s subtitle content.",description_zh:"组件字幕内容的插槽。"},{name:"title",description:"Slot for the component’s title content.",description_zh:"组件标题内容的槽。"}]},tt={name:"VCardSubtitle",props:{tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-card-subtitle/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-card-subtitle/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},it={name:"VCardText",props:{tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-card-text/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-card-text/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},nt={name:"VCardTitle",props:{tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-card-title/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-card-title/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},ot={name:"VCarousel",props:{color:{default:"undefined",value:"",type:"string",description:"Applies a color to the navigation dots - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将颜色应用于导航点 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},continuous:{default:"true",value:"",type:"boolean",description:"Determines whether carousel is continuous.",description_zh:"确定轮播是否连续。"},cycle:{default:"false",value:"",type:"boolean",description:"Determines whether the carousel should cycle through the image.",description_zh:"确定轮播是否应该循环显示图像。"},"delimiter-icon":{default:"$delimiter",value:"",type:"any",description:"Sets icon for carousel delimiter.",description_zh:"设置轮播分隔符的图标。"},direction:{default:"horizontal",value:"",type:"horizontal / vertical",description:"The transition direction when changing windows.",description_zh:"更改窗口时的过渡方向。"},disabled:{default:"false",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},height:{default:"500",value:"",type:"string | number",description:"Sets the height of the component.",description_zh:"设定组件的高度。"},"hide-delimiter-background":{default:"false",value:"",type:"boolean",description:"Hides the background of the bottom separator.",description_zh:"隐藏底部分隔符的背景。"},"hide-delimiters":{default:"false",value:"",type:"boolean",description:"Hides the bottom separator of the carousel.",description_zh:"隐藏轮播的底部分隔符。"},interval:{default:"6000",value:"",type:"string | number",description:"The duration between carousel image cycles. The cycle attribute is required.",description_zh:"轮播图像周期之间的持续时间。需要 cycle 属性。"},mandatory:{default:"force",value:"",type:"boolean / force",description:"Force at least one item to be selected, if available.",description_zh:"强制至少选择一个项目（如果可用）。"},":v-model":{default:"undefined",value:"",type:"unknown",description:"The value of the component v-mode. If the component supports variants, the default is an empty array.",description_zh:"组件 v-mode 的值。如果组件支持多属性，默认为空数组。"},"next-icon":{default:"$next",value:"",type:"any",description:"An icon that appears to force pagination of the next item.",description_zh:"强制对下一项分页而显示的图标。"},"prev-icon":{default:"$prev",value:"",type:"any",description:"An icon that is displayed to force pagination of the previous item.",description_zh:"强制对前一项分页而显示的图标。"},progress:{default:"false",value:"",type:"string | boolean",description:"Displays a carousel progress bar. The cycle and interval attributes are required.",description_zh:"显示轮播进度条。需要 cycle 和 interval 属性。"},reverse:{default:"false",value:"",type:"boolean",description:"Reverses the normal direction of the transition.",description_zh:"反转正常的过渡方向。"},"selected-class":{default:"v-window-item--active",value:"",type:"string",description:"Configure the name of the CSS class that will be applied when the selected item is selected.",description_zh:"配置被选中项目时应用的 CSS 类名。"},"show-arrows":{default:"true",value:"",type:"string | boolean",description:"Displays the Next/Previous arrow for navigation.",description_zh:"显示 下一个/前一个 导航的箭头。"},tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},touch:{default:"undefined",value:"",type:"boolean | TouchHandlers",description:"Custom left and right functions are provided when swiping left and right.",description_zh:"左右滑动时提供自定义的 left 和 right 函数。"},"vertical-delimiters":{default:"false",value:"",type:"boolean / left / right",description:"Displays the separator of the carousel vertically.",description_zh:"垂直显示轮播的分隔符。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-carousel/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-carousel/#links",typeDetail:{},events:[{name:"update:modelValue",description:"An event that is raised when a component's model-value changes.",description_zh:"当组件的 model-value 更改时引发的事件。",params:"[unknown]",value:""}],methods:[],slots:[{name:"additional",description:"Slot for additional content at the end of the component.",description_zh:"组件末尾的附加内容插槽。",params:"{\n  group: {\n    register: (\n      item: {\n        id: number\n        value: Ref<unknown>\n        disabled: Ref<boolean | undefined>\n        useIndexAsValue: boolean\n      },\n      cmp: ComponentInternalInstance,\n    ) => void\n    unregister: (id: number) => void\n    select: (id: number, value: boolean) => void\n    selected: Ref<readonly number[]>\n    isSelected: (id: number) => boolean\n    prev: () => void\n    next: () => void\n    selectedClass: Ref<string | undefined>\n    items: ComputedRef<\n      { id: number; value: unknown; disabled: boolean | undefined }[]\n    >\n    disabled: Ref<boolean | undefined>\n    getItemIndex: (value: unknown) => number\n  }\n}"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{\n  group: {\n    register: (\n      item: {\n        id: number\n        value: Ref<unknown>\n        disabled: Ref<boolean | undefined>\n        useIndexAsValue: boolean\n      },\n      cmp: ComponentInternalInstance,\n    ) => void\n    unregister: (id: number) => void\n    select: (id: number, value: boolean) => void\n    selected: Ref<readonly number[]>\n    isSelected: (id: number) => boolean\n    prev: () => void\n    next: () => void\n    selectedClass: Ref<string | undefined>\n    items: ComputedRef<\n      { id: number; value: unknown; disabled: boolean | undefined }[]\n    >\n    disabled: Ref<boolean | undefined>\n    getItemIndex: (value: unknown) => number\n  }\n}"},{name:"item",description:"Define a custom item appearance.",description_zh:"定义自定义项外观。",params:"{\n  props: Record<string, any>\n  item: { id: number; value: unknown; disabled: boolean }\n}"},{name:"next",description:"Slot displaying the arrow switching to the next item.",description_zh:"显示切换到下一项的箭头的插槽。",params:"{\n  props: {\n    icon:\n      | string\n      | (string | [string, number])[]\n      | (new () => any)\n      | FunctionalComponent\n    class: string\n    onClick: () => void\n    'aria-label': string\n  }\n}"},{name:"prev",description:"Slot displaying the arrow switching to the previous item.",description_zh:"显示切换到上一项的箭头的插槽。",params:"{\n  props: {\n    icon:\n      | string\n      | (string | [string, number])[]\n      | (new () => any)\n      | FunctionalComponent\n    class: string\n    onClick: () => void\n    'aria-label': string\n  }\n}"}],suggestions:["v-carousel-item"]},at={name:"VCarouselItem",props:{alt:{default:"undefined",value:"",type:"string",description:"Alternate text for screen readers. Leave blank for decorative images.",description_zh:"屏幕阅读器的备用文本。 留空用于装饰性图像。"},"aspect-ratio":{default:"undefined",value:"",type:"string | number",description:"Calculated as width/height, so for a 1920x1080px image, the value is 1.7778. If omitted, it will be calculated automatically.",description_zh:"计算为 width/height，因此对于 1920x1080px 的图片，其值为 1.7778。 如果省略，将自动计算。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},"content-class":{default:"undefined",value:"",type:"string",description:"Apply a custom class to the internal content element.",description_zh:"将自定义类应用于内部内容元素。"},cover:{default:"false",value:"",type:"boolean",description:"Adjust the background image to cover the entire container.",description_zh:"调整背景图像以覆盖整个容器。",required:!0},crossorigin:{default:"undefined",value:"",type:" / anonymous / use-credentials",description:"Specify that images should be fetched with CORS enabled MDN",description_zh:"指定应使用启用了 CORS 的 MDN 获取图像"},disabled:{default:"false",value:"",type:"boolean",description:"Prevents the item from becoming active when using the “next” and “prev” buttons or the toggle method.",description_zh:"防止项目在使用“下一个”和“上一个”按钮或切换方法时变为活动状态。"},draggable:{default:"undefined",value:"",type:"true / false",description:"Controls the draggable behavior of the image. See MDN.",description_zh:"控制图像的可拖动行为。请参阅 MDN。"},eager:{default:"false",value:"",type:"boolean",description:"Forces the component’s content to render when it mounts. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO.",description_zh:"强制在装入组件时呈现组件的内容。如果您的内容不会在 DOM 中呈现，而您希望为 SEO 进行爬网，这将非常有用。"},gradient:{default:"undefined",value:"",type:"string",description:"The gradient to apply to the image. This can be any valid CSS gradient declaration. You can find more information on the MDN documentation for gradients.",description_zh:"要应用于图像的渐变。这可以是任何有效的 CSS 渐变声明。你可以在渐变的 MDN 文档中找到更多信息。"},height:{default:"undefined",value:"",type:"string | number",description:"Sets the height of the component.",description_zh:"设定组件的高度。"},inline:{default:"false",value:"",type:"boolean",description:"Display as an inline element instead of a block, also disables flex-grow.",description_zh:"显示为内联元素而不是块，也会禁用 flex-grow。"},"lazy-src":{default:"undefined",value:"",type:"string",description:"Something to show while waiting for the main image to load, typically a small base64-encoded thumbnail. Has a slight blur filter applied.Use vuetify-loader to generate automatically. NOTE: This prop has no effect unless either height or aspect-ratio are provided.",description_zh:"等待主图像加载时要显示的内容，通常是 base64 编码的小缩略图。应用了轻微的模糊滤镜。使用 vuetify-loader 自动生成。注意：除非提供高度或纵横比，否则此道具无效。"},"max-height":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum height of the component.",description_zh:"设定组件的最大高度。"},"max-width":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum width of the component.",description_zh:"设定组件的最大宽度。"},"min-height":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum height of the component.",description_zh:"设定组件的最小高度。"},"min-width":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum width of the component.",description_zh:"设定组件的最小宽度。"},options:{default:"{\n  root: undefined,\n  rootMargin: undefined,\n  threshold: undefined\n}",value:"",type:"IntersectionObserverInit",description:"传递给 Intersection observer 构造函数的选项。",description_zh:"传递给 Intersection observer 构造函数的选项。"},position:{default:"undefined",value:"",type:"string",description:"Applies object-position styles to the image and placeholder elements.",description_zh:"将对象位置样式应用于图像和占位符元素。"},referrerpolicy:{default:"undefined",value:"",type:" / no-referrer / no-referrer-when-downgrade / origin / origin-when-cross-origin / same-origin / strict-origin / strict-origin-when-cross-origin / unsafe-url",description:"Define which referrer is sent when fetching the resource MDN",description_zh:"定义获取资源 MDN 时发送的引用"},"reverse-transition":{default:"undefined",value:"",type:"string | boolean",description:"Sets the reverse transition.",description_zh:"设置反向转换。"},rounded:{default:"undefined",value:"",type:"string | number | boolean",description:"Applies the border-radius style to the specified component. You can get more information about this on the Corner Radius of Borders page",description_zh:"对指定的组件应用 border-radius 样式。您可以在 边框的圆角半径页面 获取更多有关信息"},"selected-class":{default:"undefined",value:"",type:"string",description:"Configure the name of the CSS class that will be applied when the selected item is selected.",description_zh:"配置被选中项目时应用的 CSS 类名。"},sizes:{default:"undefined",value:"",type:"string",description:"To use srcset, see MDN.",description_zh:"使用 srcset，请参见 MDN."},":src":{default:"",value:"",type:"  | string  | { src: string; srcset: string; lazySrc: string; aspect: number }",description:"The URL of the image. Required attributes.",description_zh:"图像的 URL。必填属性。",required:!0},srcset:{default:"undefined",value:"",type:"string",description:"A set of alternate images to use based on the size of the device. Read more....",description_zh:"根据设备大小使用的一组备用图像。Read more…."},transition:{default:"undefined",value:"",type:"string | boolean",description:"The transition to use when switching from lazy-src to src. Can be one of the built in or custom transition.",description_zh:"从 lazy-src 切换到 src 时要使用的转换。可以是内置过渡或自定义过渡之一。"},value:{default:"undefined",value:"",type:"any",description:"The value used when selecting a component in a group. If not provided, a unique ID is used.",description_zh:"在组中选择组件时使用的值。如果没有提供，则使用唯一 ID。"},width:{default:"undefined",value:"",type:"string | number",description:"Sets the width of the component.",description_zh:"设定组件的宽度。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-carousel-item/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-carousel-item/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"},{name:"error",description:"Will be shown if the image fails to load, replacing the placeholder slot.",description_zh:"如果图像加载失败，将显示，替换占位符插槽。"},{name:"placeholder",description:"Display an overlay while the image is loading.",description_zh:"加载图像时显示叠加层。"},{name:"sources",description:"A list of <source> elements. If this slot is used v-img will render a <picture> instead of <img>.",description_zh:"<source> 元素列表。如果使用此插槽，v-img 将呈现一个 <picture> <img>而不是 ."}]},rt={name:"VCheckbox",props:{"append-icon":{default:"undefined",value:"",type:"any",description:"Creates a v-icon component after default content in the append slot.",description_zh:"在追加槽中的默认内容之后创建一个 v-icon 组件。"},"base-color":{default:"undefined",value:"",type:"string",description:"Sets the color of the input when it is not focused.",description_zh:"设置输入未聚焦时的颜色。"},"center-affix":{default:"true",value:"",type:"boolean",description:"Vertically align appendInner, prependInner, clearIcon and label in the center.",description_zh:"将 appendInner、prependInner、clearIcon 和标签垂直对齐在中心。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},"defaults-target":{default:"undefined",value:"",type:"string",description:"The target component to provide defaults values for.",description_zh:"要为其提供默认值的目标组件。"},density:{default:"default",value:"",type:"default / comfortable / compact",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。"},direction:{default:"horizontal",value:"",type:"horizontal / vertical",description:"Change the input direction.",description_zh:"改变输入方向."},disabled:{default:"null",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},error:{default:"false",value:"",type:"boolean",description:"Puts the input in a manual error state.",description_zh:"将输入置于手动错误状态。"},"error-messages":{default:"[]",value:"",type:"string | string[]",description:"Put the input box into an error state and pass in a custom error message. will be combined with any validation from the rules property. This field does not trigger validation.",description_zh:"将输入框置于错误状态，并传入自定义的错误信息。将与来自 rules 属性的任何验证相结合。这个字段不会触发验证。"},"false-icon":{default:"$checkboxOff",value:"",type:"any",description:"The icon used when it is inactive.",description_zh:"处于不活动状态时使用的图标。"},"false-value":{default:"undefined",value:"",type:"any",description:"Sets value for falsy state.",description_zh:"设置虚假状态的值。"},focused:{default:"false",value:"",type:"boolean",description:"Force the component to use the style when focused.",description_zh:"强制组件使用聚焦时的样式。"},"hide-details":{default:"false",value:"",type:"true / fasle / auto",description:"Hide hints and validation errors. When set to auto and only displays information (prompts, error messages, counter values, etc.) to display.",description_zh:"隐藏提示和验证错误。当设置为 auto 并且只有在有信息（提示、错误信息、计数器值等）要显示时，才会显示信息。"},"hide-spin-buttons":{default:"false",value:"",type:"boolean",description:"When the type is set to number, the rotation button is hidden on the input element.",description_zh:"当类型设置为 number 时，在 input 元素上隐藏旋转按钮。"},hint:{default:"undefined",value:"",type:"string",description:"Displays hint text below the input when focused. Force this always open with the persistent-hint property.",description_zh:"聚焦时在输入下方显示提示文本。使用 persistent-hint 属性强制它始终打开。"},id:{default:"undefined",value:"",type:"string",description:"Sets the DOM id on the component.",description_zh:"设置组件上的 DOM ID。"},indeterminate:{default:"false",value:"",type:"boolean",description:"Sets an indeterminate state for the checkbox.",description_zh:"为复选框设置不确定状态。"},"indeterminate-icon":{default:"$checkboxIndeterminate",value:"",type:"any",description:"The icon to use when you are in an uncertain state.",description_zh:"处于不确定状态时使用的图标。"},label:{default:"undefined",value:"",type:"string",description:"Sets the text of the v-label or v-field-label component.",description_zh:"设置 v-label 或 v-field-label 组件的文本。",required:!0},"max-errors":{default:"1",value:"",type:"string | number",description:"Control the maximum number of shown errors from validation.",description_zh:"控制验证中显示的最大错误数。"},messages:{default:"[]",value:"",type:"string | string[]",description:"Display a list of messages or messages (if using strings)",description_zh:"显示消息列表或消息（如果使用字符串）"},":v-model":{default:"undefined",value:"",type:"unknown",description:"The value of the component v-mode. If the component supports variants, the default is an empty array.",description_zh:"组件 v-mode 的值。如果组件支持多属性，默认为空数组。"},multiple:{default:"null",value:"",type:"boolean",description:"Changes expected model to an array.",description_zh:"将预期模型更改为数组。"},name:{default:"undefined",value:"",type:"string",description:"Set the name property of the component.",description_zh:"设置组件的 name 属性."},"persistent-hint":{default:"false",value:"",type:"boolean",description:"Forces hint to always be visible.",description_zh:"力暗示始终可见。"},"prepend-icon":{default:"undefined",value:"",type:"any",description:"Prepends an icon to the component, uses the same syntax as v-icon.",description_zh:"在组件前面添加一个图标，使用与 v-icon 相同的语法。"},readonly:{default:"null",value:"",type:"boolean",description:"Puts input in readonly state.",description_zh:"将输入置于只读状态。"},ripple:{default:"true",value:"",type:"boolean",description:"Apply the v-ripple directive.",description_zh:"应用 v-ripple 指令。"},rules:{default:"[]",value:"",type:"ValidationRule[]",description:"Accepts a mixed array of types function, boolean and string. Functions pass an input value as an argument and must return either true / false or a string containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) false or is a string.",description_zh:"接受 function、boolean 和 string 类型的混合数组。函数将输入值作为参数传递，并且必须返回 true / false 或包含错误消息的字符串。如果函数返回（或数组中的任何值包含）false 或字符串，则输入字段将进入错误状态。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},"true-icon":{default:"$checkboxOn",value:"",type:"any",description:"The icon used when it is active.",description_zh:"处于激活状态时使用的图标."},"true-value":{default:"undefined",value:"",type:"any",description:"Sets value for truthy state.",description_zh:"设置真实状态的值。"},type:{default:"undefined",value:"",type:"string",description:"Provides the default type for children selection controls.",description_zh:"为子项选择控件提供默认类型。"},"validate-on":{default:"undefined",value:"",type:" / input / blur / submit / input lazy / blur lazy / submit lazy / lazy input / lazy blur / lazy submit / lazy",description:"Change what type of event triggers validation to run.",description_zh:"更改触发要运行的验证的事件类型。"},"validation-value":{default:"undefined",value:"",type:"any",description:"The value used when applying validation rules.",description_zh:"应用验证规则时使用的值。"},value:{default:"undefined",value:"",type:"any",description:"The value used when selecting a component in a group. If not provided, a unique ID is used.",description_zh:"在组中选择组件时使用的值。如果没有提供，则使用唯一 ID。"},"value-comparator":{default:"undefined",value:"",type:"(a: any, b: any) => boolean",description:"Apply a custom comparison algorithm to compare model-value and values contains in the items prop.",description_zh:"应用自定义比较算法来比较模型值和 items 属性中包含的值。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-checkbox/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-checkbox/#links",typeDetail:{},events:[{name:"click:append",description:"Emitted when appended icon is clicked.",description_zh:"单击附加图标时发出。",params:"[MouseEvent]",value:""},{name:"click:prepend",description:"Emitted when prepended icon is clicked.",description_zh:"单击前置图标时发出。",params:"[MouseEvent]",value:""},{name:"update:focused",description:"Event that is emitted when the component’s focus state changes.",description_zh:"当组件的焦点状态更改时发出的事件。",params:"[boolean]",value:""},{name:"update:modelValue",description:"An event that is raised when a component's model-value changes.",description_zh:"当组件的 model-value 更改时引发的事件。",params:"[unknown]",value:""}],methods:[],slots:[{name:"append",description:"Adds an item inside the input and after input content.",description_zh:"在 input 内容内和 After input 内容中添加一个项目。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{\n  backgroundColorClasses: Ref<string[]>\n  backgroundColorStyles: Ref<CSSProperties>\n}"},{name:"details",description:"Slot for custom input details to modifying the display of messages.",description_zh:"用于修改消息显示的自定义输入详细信息的插槽。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"input",description:"The slot used for the default input element.",description_zh:"用于默认 input 元素的插槽。",params:"{\n  model: WritableComputedRef<boolean>\n  textColorClasses: Ref<string[]>\n  textColorStyles: Ref<CSSProperties>\n  backgroundColorClasses: Ref<string[]>\n  backgroundColorStyles: Ref<CSSProperties>\n  inputNode: VNode<RendererNode, RendererElement, { [key: string]: any }>\n  icon:\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n  props: {\n    onBlur: (e: Event) => void\n    onFocus: (e: FocusEvent) => void\n    id: string\n  }\n}"},{name:"label",description:"The default slot of the v-label or v-field-label component.",description_zh:"v-label 或 v-field-label 组件的默认插槽。",params:"{ label: string; props: Record<string, unknown> }"},{name:"message",description:"Slot used to customize the message content.",description_zh:"用于自定义消息内容的插槽。",params:"{ message: string }"},{name:"prepend",description:"Adds an item outside the input and before input content.",description_zh:"在输入内容之外和之前添加项目。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"}]},p={name:"VCheckboxBtn",props:{"base-color":{default:"undefined",value:"",type:"string",description:"Sets the color of the input when it is not focused.",description_zh:"设置输入未聚焦时的颜色。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},"defaults-target":{default:"undefined",value:"",type:"string",description:"The target component to provide defaults values for.",description_zh:"要为其提供默认值的目标组件。"},density:{default:"default",value:"",type:"default / comfortable / compact",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。"},disabled:{default:"null",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},error:{default:"false",value:"",type:"boolean",description:"Puts the input in a manual error state.",description_zh:"将输入置于手动错误状态。"},"false-icon":{default:"$checkboxOff",value:"",type:"any",description:"The icon used when it is inactive.",description_zh:"处于不活动状态时使用的图标。"},"false-value":{default:"undefined",value:"",type:"any",description:"Sets value for falsy state.",description_zh:"设置虚假状态的值。"},id:{default:"undefined",value:"",type:"string",description:"Sets the DOM id on the component.",description_zh:"设置组件上的 DOM ID。"},indeterminate:{default:"false",value:"",type:"boolean",description:"Puts the control in an indeterminate state. Used with the indeterminate-icon property.",description_zh:"将控件置于不确定状态。与 indeterminate-icon 属性一起使用。"},"indeterminate-icon":{default:"$checkboxIndeterminate",value:"",type:"any",description:"Icon used when the component is in an indeterminate state.",description_zh:"组件处于不确定状态时使用的图标。"},inline:{default:"false",value:"",type:"boolean",description:"Puts children inputs into a row.",description_zh:"将子输入放入一行中。"},label:{default:"undefined",value:"",type:"string",description:"Sets the text of the v-label or v-field-label component.",description_zh:"设置 v-label 或 v-field-label 组件的文本。"},":v-model":{default:"undefined",value:"",type:"unknown",description:"The value of the component v-mode. If the component supports variants, the default is an empty array.",description_zh:"组件 v-mode 的值。如果组件支持多属性，默认为空数组。"},multiple:{default:"null",value:"",type:"boolean",description:"Changes select to multiple. Accepts array for value.",description_zh:"选择更改为多个。接受 value 的数组。"},name:{default:"undefined",value:"",type:"string",description:"Set the name property of the component.",description_zh:"设置组件的 name 属性."},readonly:{default:"null",value:"",type:"boolean",description:"Puts input in readonly state.",description_zh:"将输入置于只读状态。"},ripple:{default:"true",value:"",type:"boolean",description:"Apply the v-ripple directive.",description_zh:"应用 v-ripple 指令。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},"true-icon":{default:"$checkboxOn",value:"",type:"any",description:"The icon used when it is active.",description_zh:"处于激活状态时使用的图标."},"true-value":{default:"undefined",value:"",type:"any",description:"Sets value for truthy state.",description_zh:"设置真实状态的值。"},type:{default:"undefined",value:"",type:"string",description:"Provides the default type for children selection controls.",description_zh:"为子项选择控件提供默认类型。"},value:{default:"undefined",value:"",type:"any",description:"The value used when selecting a component in a group. If not provided, a unique ID is used.",description_zh:"在组中选择组件时使用的值。如果没有提供，则使用唯一 ID。"},"value-comparator":{default:"undefined",value:"",type:"(a: any, b: any) => boolean",description:"Apply a custom comparison algorithm to compare model-value and values contains in the items prop.",description_zh:"应用自定义比较算法来比较模型值和 items 属性中包含的值。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-checkbox-btn/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-checkbox-btn/#links",typeDetail:{},events:[{name:"update:indeterminate",description:"Event that is emitted when the component’s indeterminate state changes.",description_zh:"当组件的不确定状态发生更改时发出的事件。",params:"[boolean]",value:""},{name:"update:modelValue",description:"An event that is raised when a component's model-value changes.",description_zh:"当组件的 model-value 更改时引发的事件。",params:"[unknown]",value:""}],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{\n  backgroundColorClasses: Ref<string[]>\n  backgroundColorStyles: Ref<CSSProperties>\n}"},{name:"input",description:"The slot used for the default input element.",description_zh:"用于默认 input 元素的插槽。",params:"{\n  model: WritableComputedRef<boolean>\n  textColorClasses: Ref<string[]>\n  textColorStyles: Ref<CSSProperties>\n  backgroundColorClasses: Ref<string[]>\n  backgroundColorStyles: Ref<CSSProperties>\n  inputNode: VNode<RendererNode, RendererElement, { [key: string]: any }>\n  icon:\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n  props: {\n    onBlur: (e: Event) => void\n    onFocus: (e: FocusEvent) => void\n    id: string\n  }\n}"},{name:"label",description:"The default slot of the v-label or v-field-label component.",description_zh:"v-label 或 v-field-label 组件的默认插槽。",params:"{ label: string; props: Record<string, unknown> }"}]},st={name:"VChip",props:{"active-class":{default:"undefined",value:"",type:"string",description:"The class applied to the component when it matches the current route. Find more information about the active-class prop on the vue-router documentation.",description_zh:"当组件与当前路由匹配时应用于组件的类。在 vue-router 文档上查找有关 active-class prop 的更多信息。"},"append-avatar":{default:"undefined",value:"",type:"string",description:"Appends a v-avatar component after default content in the append slot.",description_zh:"在追加插槽中的默认内容之后附加一个 v-avatar 组件。"},"append-icon":{default:"undefined",value:"",type:"any",description:"Creates a v-icon component after default content in the append slot.",description_zh:"在追加插槽中的默认内容之后创建一个 v-icon 组件。"},border:{default:"false",value:"",type:"string | number | boolean",description:"Designates the border-radius applied to the component. This can be xs, sm, md, lg, xl.",description_zh:"指定应用于组件的边框半径。这可以是 xs、sm、md、lg、xl。"},closable:{default:"false",value:"",type:"boolean",description:"Adds remove button and then a chip can be closed.",description_zh:"添加删除按钮，然后可以关闭芯片。"},"close-icon":{default:"$delete",value:"",type:"any",description:"Change the default icon used for close chips.",description_zh:"更改用于关闭芯片的默认图标。"},"close-label":{default:"$vuetify.close",value:"",type:"string",description:"Text used for aria-label on the close button in close chips. Can also be customized globally in Internationalization.",description_zh:"用于关闭芯片中关闭按钮上的咏叹调标签的文本。也可以在国际化方面进行全球定制。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},density:{default:"default",value:"",type:"default / comfortable / compact",description:"Adjusts the vertical height used by the component.",description_zh:"调整元件使用的垂直高度。"},disabled:{default:"false",value:"",type:"boolean",description:"Removes the ability to click or target the component.",description_zh:"删除了单击组件或将组件定位的功能。"},draggable:{default:"false",value:"",type:"boolean",description:"Makes the chip draggable.",description_zh:"使芯片可拖动。"},elevation:{default:"undefined",value:"",type:"string | number",description:"Designates an elevation applied to the component between 0 and 24. You can find more information on the elevation page.",description_zh:"指定应用于组件的高程介于 0 和 24 之间。您可以在高程页面上找到更多信息。"},exact:{default:"false",value:"",type:"boolean",description:"Exactly match the link. Without this, ‘/’ will match every route. You can find more information about the exact prop on the vue-router documentation.",description_zh:"完全匹配链接。如果没有这个，“/”将匹配每个路由。你可以在 vue-router 文档中找到更多关于这个 prop 的信息。"},filter:{default:"false",value:"",type:"boolean",description:"Displays a selection icon when selected.",description_zh:"选中时显示选择图标。"},"filter-icon":{default:"$complete",value:"",type:"string",description:"Change the default icon used for filter chips.",description_zh:"更改用于滤波芯片的默认图标。"},href:{default:"undefined",value:"",type:"string",description:"Designates the component as anchor and applies the href attribute.",description_zh:"将组件指定为锚点并应用 href 属性。"},label:{default:"false",value:"",type:"boolean",description:"Applies a medium size border radius.",description_zh:"应用中等大小的边框半径。"},link:{default:"undefined",value:"",type:"boolean",description:"Designates that the component is a link. This is automatic when using the href or to prop.",description_zh:"指定组件是链接。当使用 href 或 to prop 时，这是自动的。"},"v-model":{default:"true",value:"",type:"boolean",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v 模型值。如果组件支持多 prop，则默认为空数组。"},pill:{default:"false",value:"",type:"boolean",description:"Remove v-avatar padding.",description_zh:"移除 v-avatar 填充。"},"prepend-avatar":{default:"undefined",value:"",type:"string",description:"Prepends a v-avatar component in the prepend slot before default content.",description_zh:"在默认内容之前的 prepend 插槽中预置 v-avatar 组件。"},"prepend-icon":{default:"undefined",value:"",type:"any",description:"Creates a v-icon component in the prepend slot before default content.",description_zh:"在默认内容之前的前置插槽中创建一个 v-icon 组件。"},replace:{default:"false",value:"",type:"boolean",description:"Setting replace prop will call router.replace() instead of router.push() when clicked, so the navigation will not leave a history record. You can find more information about the replace prop on the vue-router documentation.",description_zh:"设置 replace prop 将在单击时调用 router.replace（） 而不是 router.push（），因此导航不会留下历史记录。你可以在 vue-router 文档中找到更多关于 replace prop 的信息。"},ripple:{default:"true",value:"",type:"boolean | { class: string }",description:"Applies the v-ripple directive.",description_zh:"应用 v-ripple 指令。"},rounded:{default:"undefined",value:"",type:"string | number | boolean",description:"Designates the border-radius applied to the component. This can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. Find more information on available border radius classes on the Border Radius page.",description_zh:"指定应用于组件的边框半径。这可以是 0、xs、sm、true、lg、xl、pill、circle 和 shaped。有关可用边框半径类的详细信息，请访问边框半径页面。"},"selected-class":{default:"undefined",value:"",type:"string",description:"Configure the active CSS class applied when an item is selected.",description_zh:"配置选择项目时应用的活动 CSS 类。"},size:{default:"default",value:"",type:"string | number",description:"Sets the height and width of the component. Default unit is px. Can also use the following predefined sizes: x-small, small, default, large, and x-large.",description_zh:"设置元件的高度和宽度。默认单位为 px。还可以使用以下预定义大小：x-small、small、default、large 和 x-large。"},tag:{default:"span",value:"",type:"string",description:"Specify a custom tag used on the root element.",description_zh:"指定用于根元素的自定义标记。"},text:{default:"undefined",value:"",type:"string",description:"Specify content text for the component.",description_zh:"指定组件的内容文本。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},tile:{default:"false",value:"",type:"boolean",description:"Removes any applied border-radius from the component.",description_zh:"从元件中移除任何应用的边框半径。"},to:{default:"undefined",value:"",type:"RouteLocationRaw",description:"Denotes the target route of the link. You can find more information about the to prop on the vue-router documentation.",description_zh:"表示链路的目标路由。你可以在 vue-router 文档中找到更多关于 to prop 的信息。"},value:{default:"undefined",value:"",type:"any",description:"The value used when a child of a v-chip-group.",description_zh:"当 v-chip-group 的子项时使用的值。"},variant:{default:"tonal",value:"",type:"flat / text / elevated / tonal / outlined / plain",description:"Applies a distinct style to the component.",description_zh:"将不同的样式应用于组件。"}},link:"https://vuetifyjs.com/en/api/v-chip/#links",link_zh:"https://vuetifyjs.com/en/api/v-chip/#links",typeDetail:{},events:[{name:"click",description:"Emitted when component is clicked, toggles chip if contained in a chip group - Will trigger component to ripple when clicked unless the .native modifier is used.",description_zh:"单击组件时发出，如果芯片组中包含芯片，则切换芯片 - 除非使用 .native 修饰符，否则单击时会触发组件产生波纹。",params:"[MouseEvent | KeyboardEvent]",value:""},{name:"click:close",description:"Emitted when close icon is clicked.",description_zh:"单击关闭图标时发出。",params:"[MouseEvent]",value:"",required:!0},{name:"clickOnce",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"[MouseEvent]",value:""},{name:"group:selected",description:"Event that is emitted when an item is selected within a group.",description_zh:"在组中选择项目时发出的事件。",params:"[{ value: boolean }]",value:""},{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件模型更改时发出的事件。",params:"[boolean]",value:""}],methods:[],slots:[{name:"append",description:"Adds an item inside the input and after input content.",description_zh:"在 input 内容内和 After input 内容中添加一个项目。",params:""},{name:"close",description:"Slot for icon used in close prop.",description_zh:"close prop 中使用的图标插槽。",params:""},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{\n  isSelected: boolean\n  selectedClass: boolean | string[]\n  select: (value: boolean) => void\n  toggle: () => void\n  value: unknown\n  disabled: boolean\n}"},{name:"filter",description:"Slot for icon used in filter prop.",description_zh:"filter 属性中使用的图标插槽。",params:""},{name:"label",description:"The default slot of the v-label or v-field-label component.",description_zh:"v-label 或 v-field-label 组件的默认插槽。",params:""},{name:"prepend",description:"Adds an item outside the input and before input content.",description_zh:"在输入内容之外和之前添加项目。",params:""}]},lt={name:"VChipGroup",props:{"center-active":{default:"false",value:"",type:"boolean",description:"Forces the selected chip to be centered.",description_zh:"强制选定的芯片居中。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},column:{default:"false",value:"",type:"boolean",description:"Remove horizontal pagination and wrap items as needed.",description_zh:"根据需要删除水平分页并换行项目。"},direction:{default:"horizontal",value:"",type:"horizontal / vertical",description:"Switch between horizontal and vertical modes.",description_zh:"在水平和垂直模式之间切换。"},disabled:{default:"false",value:"",type:"boolean",description:"Puts all children components into a disabled state.",description_zh:"将所有子组件置于禁用状态。"},filter:{default:"false",value:"",type:"boolean",description:"Applies an checkmark icon in front of every chip for using it like a filter.",description_zh:"在每个芯片前面应用一个复选标记图标，以便像过滤器一样使用它。"},mandatory:{default:"false",value:"",type:"boolean / force",description:"Forces at least one item to always be selected (if available).",description_zh:"强制始终选择至少一个项目（如果可用）。"},":max":{default:"undefined",value:"",type:"number",description:"Sets a maximum number of selections that can be made.",description_zh:"设置可以进行的最大选择数。"},mobile:{default:"null",value:"",type:"boolean",description:"Determines the display mode of the component. If true, the component will be displayed in mobile mode. If false, the component will be displayed in desktop mode. If null, will be based on the current mobile-breakpoint",description_zh:"确定组件的显示模式。如果为 true，则组件将以移动模式显示。如果为 false，则组件将以桌面模式显示。如果为 null，则将基于当前移动断点"},"mobile-breakpoint":{default:"undefined",value:"",type:"number / xs / sm / md / lg / xl / xxl",description:"Sets the designated mobile breakpoint for the component.",description_zh:"为组件设置指定的移动断点。"},"v-model":{default:"undefined",value:"",type:"unknown",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v 模型值。如果组件支持多 prop，则默认为空数组。"},multiple:{default:"false",value:"",type:"boolean",description:"Allows one to select multiple items.",description_zh:"允许一个人选择多个项目。"},"next-icon":{default:"$next",value:"",type:"any",description:"Specify the icon to use for the next icon.",description_zh:"指定要用于下一个图标的图标。"},"prev-icon":{default:"$prev",value:"",type:"any",description:"Specify the icon to use for the prev icon.",description_zh:"指定要用于上一个图标的图标。"},"selected-class":{default:"v-chip--selected",value:"",type:"string",description:"Configure the active CSS class applied when an item is selected.",description_zh:"配置选择项目时应用的活动 CSS 类。"},"show-arrows":{default:"false",value:"",type:"string | boolean",description:"Force the display of the pagination arrows.",description_zh:"强制显示分页箭头。"},symbol:{default:"undefined",value:"",type:"any",description:"The Symbol used to hook into group functionality for components like v-btn-toggle and v-bottom-navigation.",description_zh:"用于挂接到 v-btn-toggle 和 v-bottom-navigation 等组件的组功能的 Symbol。"},tag:{default:"div",value:"",type:"string",description:"Specify a custom tag used on the root element.",description_zh:"指定用于根元素的自定义标记。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},"value-comparator":{default:"undefined",value:"",type:"(a: any, b: any) => boolean",description:"Apply a custom comparison algorithm to compare model-value and values contains in the items prop.",description_zh:"应用自定义比较算法来比较 model-value 和 items prop 中包含的值。"},variant:{default:"tonal",value:"",type:"flat / elevated / tonal / outlined / text / plain",description:"Applies a distinct style to the component.",description_zh:"将不同的样式应用于组件。"}},link:"https://vuetifyjs.com/en/api/v-chip-group/#links",link_zh:"https://vuetifyjs.com/en/api/v-chip-group/#links",typeDetail:{},events:[{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件模型更改时发出的事件。",params:"[unknown]",value:""}],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{\n  isSelected: (id: number) => boolean\n  select: (id: number, value: boolean) => void\n  next: () => void\n  prev: () => void\n  selected: number[]\n}"}],suggestions:["v-chip"]},u={name:"VClassIcon",props:{icon:{default:"undefined",value:"",type:"any",description:"Assign a v-icon icon to the button.",description_zh:"为按钮指定一个 v-icon 图标。"},tag:{default:"undefined",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-class-icon/#props",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-class-icon/#props",typeDetail:{},events:[],methods:[],slots:[]},c={name:"VCode",props:{tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-code/#props",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-code/#props",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},dt={name:"VCol",props:{"align-self":{default:"null",value:"",type:"auto / start / end / center / baseline / stretch",description:"Applies the align-items css property. Available options are: start, center, end, auto, baseline and stretch.",description_zh:"应用 align-items css 属性。可用选项包括：开始、居中、结束、自动、基线和拉伸。"},cols:{default:"false",value:"",type:"string | number | boolean",description:"Sets the default number of columns the component extends. Available options are: 1 -> 12 and auto.",description_zh:"设置组件扩展的默认列数。可用选项有：1 -> 12 和自动。"},lg:{default:"false",value:"",type:"string | number | boolean",description:"Change the number of columns on larger and larger breakpoints.",description_zh:"在更大和更大的断点上更改列数。"},md:{default:"false",value:"",type:"string | number | boolean",description:"Change the number of columns on medium and large breakpoints.",description_zh:"更改中等和较大断点上的列数。"},offset:{default:"null",value:"",type:"string | number",description:"Sets the default offset for the column.",description_zh:"设置列的默认偏移量。"},"offset-lg":{default:"null",value:"",type:"string | number",description:"Change the offset of the component on larger and larger breakpoints.",description_zh:"在更大和更大的断点上更改组件的偏移量。"},"offset-md":{default:"null",value:"",type:"string | number",description:"Change the offset of the component at medium and higher breakpoints.",description_zh:"在中等和更高的断点上更改组件的偏移量。"},"offset-sm":{default:"null",value:"",type:"string | number",description:"Change the offset of the component at smaller and larger breakpoints.",description_zh:"在较小和较大的断点处更改组件的偏移量。"},"offset-xl":{default:"null",value:"",type:"string | number",description:"Change the offset of the component at larger and larger breakpoints.",description_zh:"在更大和更大的断点处更改组件的偏移量。"},"offset-xxl":{default:"null",value:"",type:"string | number",description:"Changes the offset of the component on extra extra large and greater breakpoints.",description_zh:"更改组件在超大和更大断点上的偏移量。"},order:{default:"null",value:"",type:"string | number",description:"Sets the default order for the column",description_zh:"设置列的默认 order"},"order-lg":{default:"null",value:"",type:"string | number",description:"Change the order of components on larger and larger breakpoints.",description_zh:"在更大和更大的断点上更改组件的顺序。"},"order-md":{default:"null",value:"",type:"string | number",description:"Change the order of components at medium and higher breakpoints.",description_zh:"在中等和更高的断点上更改组件的顺序。"},"order-sm":{default:"null",value:"",type:"string | number",description:"Change the order of components on smaller and larger breakpoints.",description_zh:"在较小和较大的断点上更改组件的顺序。"},"order-xl":{default:"null",value:"",type:"string | number",description:"Change the order of components on larger and larger breakpoints.",description_zh:"在更大和更大的断点上更改组件的顺序。"},"order-xxl":{default:"null",value:"",type:"string | number",description:"Changes the order of the component on extra extra large and greater breakpoints.",description_zh:"更改组件在超大和更大断点上的顺序。"},sm:{default:"false",value:"",type:"string | number | boolean",description:"Change the number of columns on smaller and larger breakpoints.",description_zh:"在较小和较大的断点上更改列数。"},tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"},xl:{default:"false",value:"",type:"string | number | boolean",description:"Change the number of columns on larger and larger breakpoints.",description_zh:"在更大和更大的断点上更改列数。"},xxl:{default:"false",value:"",type:"string | number | boolean",description:"Changes the number of columns on extra extra large and greater breakpoints.",description_zh:"更改超大和更大断点上的列数。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-col/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-col/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},pt={name:"VColorPicker",props:{border:{default:"false",value:"",type:"string | number | boolean",description:"Apply a border style to the component.",description_zh:"应用边框样式到组件。"},"canvas-height":{default:"150",value:"",type:"string | number",description:"Height of canvas.",description_zh:"画布的高度。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},disabled:{default:"false",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},"dot-size":{default:"10",value:"",type:"string | number",description:"Change the size of the selected points on the canvas.",description_zh:"更改画布上选择点的大小."},elevation:{default:"undefined",value:"",type:"string | number",description:"The elevation of the component is acceptable from 0 to 24. You can read more on the Elevation page.",description_zh:"组件的海拔可接受 0 到 24 之间的值。你可以在 elevation page 浏览更多信息。"},"hide-canvas":{default:"false",value:"",type:"boolean",description:"Hide the canvas.",description_zh:"隐藏画布."},"hide-inputs":{default:"false",value:"",type:"boolean",description:"Hide inputs.",description_zh:"隐藏输入."},"hide-sliders":{default:"false",value:"",type:"boolean",description:"Hide sliders.",description_zh:"隐藏滑块."},mode:{default:"rgba",value:"",type:"rgb / rgba / hsl / hsla / hex / hexa",description:"The current selected input type. Syncable with v-model:mode.",description_zh:"当前选定的输入类型。与 v-model：mode 同步。"},":v-model":{default:"undefined",value:"",type:"string | Record<string, unknown>",description:"The value of the component v-mode. If the component supports variants, the default is an empty array.",description_zh:"组件 v-mode 的值。如果组件支持多属性，默认为空数组。"},modes:{default:"['rgb', 'rgba', 'hsl', 'hsla', 'hex', 'hexa']",value:"",type:"('rgb' | 'rgba' | 'hsl' | 'hsla' | 'hex' | 'hexa')[]",description:"Sets available input types.",description_zh:"设置可用的输入类型。"},position:{default:"undefined",value:"",type:"static / relative / fixed / absolute / sticky",description:"Sets the position for the component.",description_zh:"设置元件的位置。"},rounded:{default:"undefined",value:"",type:"string | number | boolean",description:"Applies the border-radius style to the specified component. You can get more information about this on the Corner Radius of Borders page",description_zh:"对指定的组件应用 border-radius 样式。您可以在 边框的圆角半径页面 获取更多有关信息"},"show-swatches":{default:"false",value:"",type:"boolean",description:"Display swatches.",description_zh:"显示色板."},swatches:{default:"undefined",value:"",type:"(  | string  | number  | {      readonly h: number      readonly s: number      readonly v: number      readonly a?: number | undefined    }  | {      readonly r: number      readonly g: number      readonly b: number      readonly a?: number | undefined    }  | {      readonly h: number      readonly s: number      readonly l: number      readonly a?: number | undefined    })[][]",description:"Sets the available color swatches to select from. 2D array of rows and columns, accepts any color format the picker does.",description_zh:"设置可供选择的可用色板。行和列的 2D 数组，接受选取器执行的任何颜色格式。"},"swatches-max-height":{default:"150",value:"",type:"string | number",description:"Sets the maximum height of the swatches section.",description_zh:"设置色板截面的最大高度。"},tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},width:{default:"300",value:"",type:"string | number",description:"Sets the width of the color picker.",description_zh:"设置拾色器的宽度。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-color-picker/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-color-picker/#links",typeDetail:{},events:[{name:"update:mode",description:"Selected mode.",description_zh:"所选模式。",params:"['rgb' | 'rgba' | 'hsl' | 'hsla' | 'hex' | 'hexa']",value:""},{name:"update:modelValue",description:"An event that is raised when a component's model-value changes.",description_zh:"当组件的 model-value 更改时引发的事件。",params:"[any]",value:""}],methods:[],slots:[]},ut={name:"VCombobox",props:{active:{default:"false",value:"",type:"boolean",version:"",description:"Controls the active state of the item. This is typically used to highlight the component.",description_zh:"控制项的活动状态。这通常用于突出显示组件。",required:!1},"append-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Creates a v-icon component after default content in the append slot.",description_zh:"在附加插槽中的默认内容之后创建一个 v 图标组件。",required:!1},autofocus:{default:"false",value:"",type:"boolean",version:"",description:"Enables autofocus.",description_zh:"启用自动对焦。",required:!1},"auto-select-first":{default:"false",value:"",type:"boolean / exact",version:"",description:"When searching, will always highlight the first option and select it on blur. exact will only highlight and select exact matches.",description_zh:"搜索时，将始终高亮显示第一个选项并在模糊时选择它。exact 将仅突出显示并选择 exact matches。",required:!1},"base-color":{default:"undefined",value:"",type:"string",version:"",description:"Sets the color of the input when it is not focused.",description_zh:"设置输入未聚焦时的颜色。",required:!1},"bg-color":{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control’s background. Used on components that also support the color prop. - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件的背景。用于也支持 color 属性的组件。- 支持实用工具颜色（例如 Success 或 Purple）或 CSS 颜色（#033 或 RGBA（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},"center-affix":{default:"undefined",value:"",type:"boolean",version:"",description:"Vertically align appendInner, prependInner, clearIcon and label in the center.",description_zh:"将 appendInner、prependInner、clearIcon 和 label 垂直对齐在中心。",required:!1},chips:{default:"false",value:"",type:"boolean",version:"",description:"Changes display of selections to chips.",description_zh:"将选择项的显示更改为筹码。",required:!1},clearable:{default:"false",value:"",type:"boolean",version:"",description:"Allows for the component to be cleared.",description_zh:"允许清除组件。",required:!1},"clear-icon":{default:"'$clear'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"The icon used when the clearable prop is set to true.",description_zh:"当 clearable prop 设置为 true 时使用的图标。",required:!1},"clear-on-select":{default:"true",value:"",type:"boolean",version:"",description:"Reset the search text when a selection is made while using the multiple prop.",description_zh:"在使用 multiple 属性时进行选择时重置搜索文本。",required:!1},"closable-chips":{default:"false",value:"",type:"boolean",version:"",description:"Enables the closable prop on all v-chip components.",description_zh:"在所有 v-chip 组件上启用 closable prop。",required:!1},"close-text":{default:"'$vuetify.close'",value:"",type:"string",version:"",description:"Text set to to the inputs aria-label and title when input menu is closed.",description_zh:"关闭输入菜单时，文本设置为输入 aria-label 和 title。",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},counter:{default:"false",value:"",type:"string | number | boolean",version:"",description:"Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation.",description_zh:"为 input length 创建 counter;如果未指定数字，则默认为 25。不应用任何验证。",required:!1},"counter-value":{default:"undefined",value:"",type:"number | ((value: any) => number)",version:"",description:"Function returns the counter display text.",description_zh:"function 返回计数器显示文本。",required:!1},"custom-filter":{default:"undefined",value:"",type:"FilterFunction",version:"",description:"Function used to filter items, called for each filterable key on each item in the list. The first argument is the filterable value from the item, the second is the search term, and the third is the internal item object. The function should return true if the item should be included in the filtered list, or the index of the match in the value if it should be included with the result highlighted.",description_zh:"用于筛选项目的函数，为列表中每个项目上的每个可筛选键调用。第一个参数是项目中的可筛选值，第二个参数是搜索词，第三个参数是内部项目对象。如果项目应包含在筛选列表中，则该函数应返回 true，如果匹配项应包含在突出显示的结果中，则该值应返回匹配项的索引。",required:!1},"custom-key-filter":{default:"undefined",value:"",type:"unknown",version:"",description:"Function used on specific keys within the item object. customFilter is skipped for columns with customKeyFilter specified.",description_zh:"用于 item 对象中特定键的函数。对于指定了 customKeyFilter 的列，将跳过 customFilter。",required:!1},delimiters:{default:"undefined",value:"",type:"string[]",version:"",description:"Accepts an array of strings that will trigger a new tag when typing. Does not replace the normal Tab and Enter keys.",description_zh:"接受一个字符串数组，该数组将在键入时触发新标签。不会替换常规的 Tab 键和 Enter 键。",required:!1},density:{default:"'default'",value:"",type:"default / comfortable / compact",version:"",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。",required:!1},direction:{default:"'horizontal'",value:"",type:"horizontal / vertical",version:"",description:"Changes the direction of the input.",description_zh:"更改输入的方向。",required:!1},disabled:{default:"null",value:"",type:"boolean",version:"",description:"Removes the ability to click or target the input.",description_zh:"删除单击或定位输入的功能。",required:!1},eager:{default:"false",value:"",type:"boolean",version:"",description:"Forces the component’s content to render when it mounts. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO.",description_zh:"强制组件的内容在挂载时呈现。如果您的内容不会在 DOM 中呈现，并且您希望为 SEO 抓取，这将非常有用。",required:!1},error:{default:"false",value:"",type:"boolean",version:"",description:"Puts the input in a manual error state.",description_zh:"将输入置于手动错误状态。",required:!1},"error-messages":{default:"[]",value:"",type:"string | string[]",version:"",description:"Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the rules prop. This field will not trigger validation.",description_zh:"将输入置于错误状态并传递自定义错误消息。将与 rules prop 发生的任何验证相结合。此字段不会触发验证。",required:!1},"filter-keys":{default:"['title']",value:"",type:"string | string[]",version:"",description:"Array of specific keys to filter on the item.",description_zh:"用于筛选项目的特定键的数组。",required:!1},"filter-mode":{default:"'intersection'",value:"",type:"some / every / union / intersection",version:"",description:"Controls how the results of customFilter and customKeyFilter are combined. All modes only apply customFilter to columns not specified in customKeyFilter.some: There is at least one match from either the custom filter or the custom key filter.every: All columns match either the custom filter or the custom key filter.union: There is at least one match from the custom filter, or all columns match the custom key filters.intersection: There is at least one match from the custom filter, and all columns match the custom key filters.",description_zh:"控制 customFilter 和 customKeyFilter 的结果的组合方式。所有模式仅将 customFilter 应用于 customKeyFilter.some：自定义筛选条件或自定义键至少有一个匹配项 filter.every：所有列都与自定义筛选条件或自定义键匹配 filter.union：自定义筛选条件中至少有一个匹配项，或者所有列都与自定义键 filters.intersection 匹配： 自定义筛选条件中至少有一个匹配项，并且所有列都与自定义键筛选条件匹配。",required:!1},flat:{default:"false",value:"",type:"boolean",version:"",description:"Removes box shadow when using a variant with elevation.",description_zh:"使用具有高程的变量时删除框阴影。",required:!1},focused:{default:"false",value:"",type:"boolean",version:"",description:"Forces a focused state styling on the component.",description_zh:"强制对组件进行 focused state 样式设置。",required:!1},"hide-details":{default:"false",value:"",type:"boolean / auto",version:"",description:"Hides hint and validation errors. When set to auto messages will be rendered only if there’s a message (hint, error message, counter value etc) to display.",description_zh:"隐藏提示和验证错误。当设置为 auto 时，仅当有消息 （提示、错误消息、计数器值等） 要显示时，才会呈现消息。",required:!1},"hide-no-data":{default:"true",value:"",type:"boolean",version:"",description:"Hides the menu when there are no options to show. Useful for preventing the menu from opening before results are fetched asynchronously. Also has the effect of opening the menu when the items array changes if not already open.",description_zh:"当没有要显示的选项时隐藏菜单。用于防止在异步获取结果之前打开菜单。如果尚未打开，则还具有在 items 数组更改时打开菜单的效果。",required:!1},"hide-selected":{default:"false",value:"",type:"boolean",version:"",description:"Do not display in the select menu items that are already selected.",description_zh:"不显示在已选择的 select 菜单项中。",required:!1},"hide-spin-buttons":{default:"false",value:"",type:"boolean",version:"",description:"Hides spin buttons on the input when type is set to number.",description_zh:"当 type 设置为 number 时，隐藏输入上的旋转按钮。",required:!1},hint:{default:"undefined",value:"",type:"string",version:"",description:"Displays hint text below the input when focused. Force this always open with the persistent-hint property.",description_zh:"聚焦时，在输入下方显示提示文本。使用 persistent-hint 属性强制 this always 打开。",required:!1},id:{default:"undefined",value:"",type:"string",version:"",description:"Sets the DOM id on the component.",description_zh:"设置组件上的 DOM ID。",required:!1},"item-children":{default:"false",value:"",type:"SelectItemKey",version:"",description:"This property currently has no effect.",description_zh:"此属性当前不起作用。",required:!1},"item-color":{default:"undefined",value:"",type:"string",version:"",description:"Sets color of selected items.",description_zh:"设置选定项目的颜色。",required:!1},"item-props":{default:"'props'",value:"",type:"SelectItemKey<any>",version:"",description:"Props object that will be applied to each item component. true will treat the original object as raw props and pass it directly to the component.",description_zh:"Props 对象。true 会将原始对象视为 raw props 并将其直接传递给组件。",required:!1},":items":{default:"[]",value:"",type:"any[]",version:"",description:"Can be an array of objects or strings. By default objects should have title and value properties, and can optionally have a props property containing any VListItem props. Keys to use for these can be changed with the item-title, item-value, and item-props props.",description_zh:"可以是对象或字符串的数组。默认情况下，对象应该具有 title 和 value 属性，并且可以选择具有包含任何 VListItem props 的 props 属性。用于这些的键可以通过 item-title、item-value 和 item-props 属性来更改。",required:!0},"item-title":{default:"'title'",value:"",type:"SelectItemKey<any>",version:"",description:"Property on supplied items that contains its title.",description_zh:"包含其标题的所提供项上的属性。",required:!1},"item-value":{default:"'value'",value:"",type:"SelectItemKey<any>",version:"",description:"Property on supplied items that contains its value.",description_zh:"包含其值的 supplied items 上的属性。",required:!1},label:{default:"undefined",value:"",type:"string",version:"",description:"Sets the text of the v-label or v-field-label component.",description_zh:"设置 v-label 或 v-field-label 组件的文本。",required:!0},"list-props":{default:"undefined",value:"",type:"unknown",version:"",description:"Pass props through to the v-list component. Accepts an object with anything from v-list props, camelCase keys are recommended.",description_zh:"将 props 传递给 v-list 组件。接受带有 v-list props 中的任何内容的对象，建议使用 camelCase 键。",required:!1},loading:{default:"false",value:"",type:"string | boolean",version:"",description:"Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - primary, secondary, success, info, warning, error) or a Boolean which uses the component color (set by color prop - if it’s supported by the component) or the primary color.",description_zh:"显示线性进度条。可以是指定应用于进度条的颜色的 String（任何材料颜色或主题颜色 - primary、secondary、success、info、warning、error），也可以是使用组件颜色（由 color 属性设置 - 如果组件支持）或主要颜色的 Boolean。",required:!1},"max-errors":{default:"1",value:"",type:"string | number",version:"",description:"Control the maximum number of shown errors from validation.",description_zh:"控制验证时显示的错误的最大数量。",required:!1},"max-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。",required:!1},menu:{default:"false",value:"",type:"boolean",version:"",description:"Renders with the menu open by default.",description_zh:"默认情况下，在菜单打开的情况下进行渲染。",required:!1},"menu-icon":{default:"'$dropdown'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Sets the the spin icon.",description_zh:"设置旋转图标。",required:!1},"menu-props":{default:"undefined",value:"",type:"unknown",version:"",description:"Pass props through to the v-menu component. Accepts an object with anything from v-menu props, camelCase keys are recommended.",description_zh:"将 props 传递给 v-menu 组件。接受带有 v-menu props 中的任何内容的对象，建议使用 camelCase 键。",required:!1},messages:{default:"[]",value:"",type:"string | string[]",version:"",description:"Displays a list of messages or a single message if using a string.",description_zh:"显示消息列表，如果使用字符串，则显示单个消息。",required:!1},"min-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum width for the component.",description_zh:"设置组件的最小宽度。",required:!1},"v-model":{default:"null",value:"",type:"any",version:"",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v-model 值。如果 component 支持 multiple prop，则默认为空数组。",required:!1},multiple:{default:"false",value:"",type:"boolean",version:"",description:"Changes select to multiple. Accepts array for value.",description_zh:"将 select 更改为 multiple。接受数组作为值。",required:!1},name:{default:"undefined",value:"",type:"string",version:"",description:"Sets the component’s name attribute.",description_zh:"设置组件的 name 属性。",required:!1},"no-data-text":{default:"'$vuetify.noDataText'",value:"",type:"string",version:"",description:"Text shown when no items are provided to the component.",description_zh:"未向组件提供任何项时显示的文本。",required:!1},"no-filter":{default:"false",value:"",type:"boolean",version:"",description:"Disables all item filtering.",description_zh:"禁用所有项目筛选。",required:!1},"open-on-clear":{default:"false",value:"",type:"boolean",version:"",description:"Open’s the menu whenever the clear icon is clicked.",description_zh:"每当单击清除图标时，打开菜单。",required:!1},"open-text":{default:"'$vuetify.open'",value:"",type:"string",version:"",description:"Text set to to the inputs aria-label and title when input menu is open.",description_zh:"当输入菜单打开时，文本设置为输入 aria-label 和 title。",required:!1},"persistent-clear":{default:"false",value:"",type:"boolean",version:"",description:"Always show the clearable icon when the input is dirty (By default it only shows on hover).",description_zh:"当输入脏时，始终显示可清除图标（默认情况下，它仅在悬停时显示）。",required:!1},"persistent-counter":{default:"false",value:"",type:"boolean",version:"",description:"Forces counter to always be visible.",description_zh:"强制计数器始终可见。",required:!1},"persistent-hint":{default:"false",value:"",type:"boolean",version:"",description:"Forces hint to always be visible.",description_zh:"强制提示始终可见。",required:!1},"persistent-placeholder":{default:"false",value:"",type:"boolean",version:"",description:"Forces placeholder to always be visible.",description_zh:"强制占位符始终可见。",required:!1},placeholder:{default:"undefined",value:"",type:"string",version:"",description:"Sets the input’s placeholder text.",description_zh:"设置输入的占位符文本。",required:!1},prefix:{default:"undefined",value:"",type:"string",version:"",description:"Displays prefix text.",description_zh:"显示前缀文本。",required:!1},"prepend-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Prepends an icon to the outnside the component’s input, uses the same syntax as v-icon.",description_zh:"在组件输入的外部预置一个图标，使用与 v-icon 相同的语法。",required:!1},"prepend-inner-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Creates a v-icon component in the prepend-inner slot.",description_zh:"在 prepend-inner 插槽中创建一个 v-icon 组件。",required:!1},readonly:{default:"null",value:"",type:"boolean",version:"",description:"Puts input in readonly state.",description_zh:"将输入置于只读状态。",required:!1},"return-object":{default:"true",value:"",type:"boolean",version:"",description:"Changes the selection behavior to return the object directly rather than the value specified with item-value.",description_zh:"更改选择行为以直接返回对象，而不是使用 item-value 指定的值。",required:!1},reverse:{default:"false",value:"",type:"boolean",version:"",description:"Reverses the orientation.",description_zh:"反转方向。",required:!1},role:{default:"'combobox'",value:"",type:"string",version:"",description:"The role attribute applied to the input.",description_zh:"应用于输入的 role 属性。",required:!1},rounded:{default:"undefined",value:"",type:"string | number | boolean",version:"",description:"Adds a border radius to the input.",description_zh:"向输入添加边框半径。",required:!1},rules:{default:"[]",value:"",type:"ValidationRule[]",version:"",description:"Accepts a mixed array of types function, boolean and string. Functions pass an input value as an argument and must return either true / false or a string containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) false or is a string.",description_zh:"接受 function、boolean 和 string 类型的混合数组。函数将输入值作为参数传递，并且必须返回 true / false 或包含错误消息的字符串。如果函数返回 （或数组中的任何值包含） false 或为字符串，则输入字段将进入错误状态。",required:!1},"single-line":{default:"false",value:"",type:"boolean",version:"",description:"Label does not move on focus/dirty.",description_zh:"标签在聚焦/脏污时不移动。",required:!1},suffix:{default:"undefined",value:"",type:"string",version:"",description:"Displays suffix text.",description_zh:"显示后缀文本。",required:!1},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},tile:{default:"false",value:"",type:"boolean",version:"",description:"Removes any applied border-radius from the component.",description_zh:"从组件中删除任何应用的 border-radius。",required:!1},transition:{default:"false",value:"",type:"string | boolean | (TransitionProps & { component: Component })",version:"",description:"Sets the component transition. Can be one of the built in or custom transition.",description_zh:"设置零部件过渡。可以是内置或自定义过渡之一。",required:!1},type:{default:"'text'",value:"",type:"string",version:"",description:"Sets input type.",description_zh:"设置输入类型。",required:!1},"validate-on":{default:"undefined",value:"",type:" / eager / lazy / blur / input / submit / invalid-input / blur lazy / input lazy / submit lazy / invalid-input lazy / blur eager / input eager / submit eager / invalid-input eager / lazy blur / lazy input / lazy submit / lazy invalid-input / eager blur / eager input / eager submit / eager invalid-input",version:"",description:"Change what type of event triggers validation to run.",description_zh:"更改触发验证的事件类型以运行。",required:!1},"value-comparator":{default:"undefined",value:"",type:"(a: any, b: any) => boolean",version:"",description:"Apply a custom comparison algorithm to compare model-value and values contains in the items prop.",description_zh:"应用自定义比较算法来比较 models-value 和 items prop 中包含的值。",required:!1},variant:{default:"'filled'",value:"",type:" / outlined / plain / underlined / filled / solo / solo-inverted / solo-filled",version:"",description:"Applies a distinct style to the component.",description_zh:"将不同的样式应用于组件。",required:!1},width:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the width for the component.",description_zh:"设置组件的宽度。",required:!1}},link:"https://vuetifyjs.com/en/api/v-combobox/",link_zh:"https://vuetifyjs.com/en/api/v-combobox/",typeDetail:{},events:[{name:"click:append",description:"Emitted when append icon is clicked.",description_zh:"单击附加图标时发出。",params:"[MouseEvent]",value:""},{name:"click:appendInner",description:"Emitted when appended inner icon is clicked.",description_zh:"单击附加的内部图标时发出。",params:"[MouseEvent]",value:""},{name:"click:clear",description:"Emitted when clearable icon clicked.",description_zh:"单击可清除图标时发出。",params:"[MouseEvent]",value:""},{name:"click:prepend",description:"Emitted when prepended icon is clicked.",description_zh:"单击前置图标时发出。",params:"[MouseEvent]",value:""},{name:"click:prependInner",description:"Emitted when prepended inner icon is clicked.",description_zh:"单击前置的内部图标时发出。",params:"[MouseEvent]",value:""},{name:"update:focused",description:"Emitted when the input is focused or blurred",description_zh:"当输入聚焦或模糊时发出",params:"[boolean]",value:""},{name:"update:menu",description:"Event that is emitted when the component’s menu state changes.",description_zh:"组件的菜单状态更改时发出的事件。",params:"[boolean]",value:""},{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件的模型更改时发出的事件。",params:"[any]",value:""},{name:"update:search",description:"Event emitted when the search value changes.",description_zh:"搜索值更改时发出的事件。",params:"[string]",value:""}],methods:[],slots:[{name:"append",description:"Adds an item inside the input and after input content.",description_zh:"在 input 内容内和 After input 内容中添加一个项目。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"append-inner",description:"Adds an item inside the input content.",description_zh:"在输入内容中添加项目。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n}"},{name:"append-item",description:"Adds an item after menu content.",description_zh:"在菜单内容后添加项目。",params:""},{name:"chip",description:"Slot for custom chip when using the chip prop.",description_zh:"使用 chip 属性时自定义 chip 的插槽。",params:"{ item: ListItem; index: number; props: Record<string, unknown> }"},{name:"clear",description:"Slot for custom clear icon (displayed when the clearable prop is equal to true).",description_zh:"自定义 clear 图标的插槽（当 clearable prop 等于 true 时显示）。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n} & { props: Record<string, any> }"},{name:"details",description:"Slot for custom input details to modifying the display of messages.",description_zh:"用于修改消息显示的自定义输入详细信息的插槽。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"item",description:'Define a custom item appearance. The root element of this slot must be a v-list-item with v-bind="props" applied. props includes everything required for the default select list behaviour - including title, value, click handlers, virtual scrolling, and anything else that has been added with item-props.',description_zh:"定义自定义项外观。这个插槽的根元素必须是一个应用了 v-bind=“props” 的 v-list-item。props 包括默认选择列表行为所需的一切 - 包括 title、value、click 处理程序、虚拟滚动以及通过 item-props 添加的任何其他内容。",params:"{ item: ListItem; index: number; props: Record<string, unknown> }"},{name:"label",description:"The default slot of the v-label or v-field-label component.",description_zh:"v-label 或 v-field-label 组件的默认插槽。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n} & { label: string; props: Record<string, any> }"},{name:"loader",description:"Slot for custom loader (displayed when loading prop is equal to true).",description_zh:"自定义加载器的插槽（当加载 prop 等于 true 时显示）。",params:"{ color: string; isActive: boolean }"},{name:"message",description:"Slot used to customize the message content.",description_zh:"用于自定义消息内容的插槽。",params:"{ message: string }"},{name:"no-data",description:"Defines content for when no items are provided.",description_zh:"定义未提供任何项目时的内容。",params:""},{name:"prepend",description:"Adds an item outside the input and before input content.",description_zh:"在输入内容之外和之前添加项目。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"prepend-inner",description:"Slot that is prepended to the input.",description_zh:"Slot 添加到输入的前缀。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n}"},{name:"prepend-item",description:"Adds an item before menu content.",description_zh:"在菜单内容之前添加项目。",params:""},{name:"selection",description:"Define a custom selection appearance.",description_zh:"定义自定义选择外观。",params:"{ item: ListItem; index: number }"}],exposed:[{name:"[string]",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"any"}]},h={name:"VComponentIcon",props:{icon:{default:"undefined",value:"",type:"any",description:"Assign a v-icon icon to the button.",description_zh:"为按钮指定一个 v-icon 图标。"},tag:{default:"undefined",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-component-icon/#props",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-component-icon/#props",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},m={name:"VConfirmEdit",props:{"cancel-text":{default:"'$vuetify.confirmEdit.cancel'",value:"",type:"string",version:"",description:"Text for the cancel button",description_zh:"取消按钮的文本",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},"v-model":{default:"undefined",value:"",type:"unknown",version:"",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v-model 值。如果 component 支持 multiple prop，则默认为空数组。",required:!0},"ok-text":{default:"'$vuetify.confirmEdit.ok'",value:"",type:"string",version:"",description:"Text for the ok button",description_zh:"确定按钮的文本",required:!1}},link:"https://vuetifyjs.com/en/api/v-confirm-edit/",link_zh:"https://vuetifyjs.com/en/api/v-confirm-edit/",typeDetail:{},events:[{name:"cancel",description:"The event emitted when the user clicks the Cancel button",description_zh:"用户单击 Cancel 按钮时发出的事件",params:"[]",value:""},{name:"save",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"[unknown]",value:""},{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件的模型更改时发出的事件。",params:"[unknown]",value:""}],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。"}],exposed:[{name:"cancel",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"() => void"},{name:"isPristine",description:"Returns true if the input has not been modified in any way.",description_zh:"Returns true if the input has not been modified in any way.",detail:"boolean"},{name:"save",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"() => void"}]},ct={name:"VContainer",props:{fluid:{default:"false",value:"",type:"boolean",description:"Deletes the breakpoint of the maximum width size of the view.",description_zh:"删除视图最大宽度大小的断点。"},tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-container/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-container/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},f={name:"VCounter",props:{active:{default:"false",value:"",type:"boolean",description:"Determines whether the counter is visible or not.",description_zh:"确定计数器是否可见。"},max:{default:"undefined",value:"",type:"string | number",description:"Sets the maximum allowed value.",description_zh:"设置允许的最大值。"},transition:{default:"{component: {name: 'slide-y-transition'}}",value:"",type:"  | { component: Component }  | string  | boolean  | (TransitionProps & { component: Component })",description:"Sets the component transition. Can be one of the built in or custom transition.",description_zh:"设置组件过渡。可以是内置过渡或自定义过渡之一。"},value:{default:"0",value:"",type:"string | number",description:"Sets the current counter value.",description_zh:"设置当前计数器值。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-counter/#props",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-counter/#props",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{ counter: string; max: string | number; value: string | number }"}]},v={name:"VDataIterator",props:{"custom-filter":{default:"undefined",value:"",type:"FilterFunction",description:"Function to filter items.",description_zh:"过滤项目的功能。"},"custom-key-filter":{default:"undefined",value:"",type:"unknown",description:"Function used on specific keys within the item object. customFilter is skipped for columns with customKeyFilter specified.",description_zh:"用于 item 对象中特定键的函数。对于指定了 customKeyFilter 的列，将跳过 customFilter。"},"custom-key-sort":{default:"undefined",value:"",type:"unknown",description:"Function used on specific keys within the item object. customSort is skipped for columns with customKeySort specified.",description_zh:"用于 item 对象中特定键的函数。对于指定了 customKeySort 的列，将跳过 customSort。"},expanded:{default:"[]",value:"",type:"string[]",description:"Array of expanded items. Can be used with .sync modifier.",description_zh:"展开项的数组。可与 .sync 修饰符一起使用。"},"expand-on-click":{default:"false",value:"",type:"boolean",description:"Expands item when the row is clicked.",description_zh:"单击行时展开项。"},"filter-keys":{default:"undefined",value:"",type:"string | string[]",description:"Array of specific keys to filter on the item.",description_zh:"要筛选项目的特定键的数组。"},"filter-mode":{default:"intersection",value:"",type:"every / some / union / intersection",description:"Controls how the results of customFilter and customKeyFilter are combined. All modes only apply customFilter to columns not specified in customKeyFilter.some: There is at least one match from either the custom filter or the custom key filter.every: All columns match either the custom filter or the custom key filter.union: There is at least one match from the custom filter, or all columns match the custom key filters.intersection: There is at least one match from the custom filter, and all columns match the custom key filters.",description_zh:"控制 customFilter 和 customKeyFilter 的结果组合方式。所有模式仅将 customFilter 应用于 customKeyFilter.some 中未指定的列：自定义筛选器或自定义键 filter.every 中至少有一个匹配项：所有列都与自定义筛选器或自定义键 filter.union 匹配：自定义筛选器中至少有一个匹配项，或者所有列都与自定义键 filters.intersection 匹配： 自定义筛选器中至少有一个匹配项，并且所有列都与自定义键筛选器匹配。"},"group-by":{default:"[]",value:"",type:"SortItem[]",description:"Changes which item property should be used for grouping items. Currently only supports a single grouping in the format: group or ['group']. When using an array, only the first element is considered. Can be used with .sync modifier.",description_zh:"更改应用于对项进行分组的项属性。目前仅支持以下格式的单个分组：group 或 ['group']。使用数组时，仅考虑第一个元素。可与 .sync 修饰符一起使用。"},":items":{default:"[]",value:"",type:"unknown[]",description:"An array of strings or objects used for automatically generating children components.",description_zh:"用于自动生成子组件的字符串或对象数组。",required:!0},"item-selectable":{default:"null",value:"",type:"SelectItemKey",description:"Property on supplied items that contains the boolean value indicating if the item is selectable.",description_zh:"提供的项的属性，该属性包含指示项是否可选的布尔值。"},"items-per-page":{default:"5",value:"",type:"string | number",description:"Changes how many items per page should be visible. Can be used with .sync modifier. Setting this prop to -1 will display all items on the page.",description_zh:"更改每页应可见的项目数。可与 .sync 修饰符一起使用。将此道具设置为 -1 将显示页面上的所有项目。"},"item-value":{default:"id",value:"",type:"SelectItemKey",description:"Property on supplied items that contains its value.",description_zh:"包含其值的已提供项的属性。"},loading:{default:"false",value:"",type:"boolean",description:"If true and no items are provided, then a loading text will be shown.",description_zh:"如果为 true 且未提供任何项目，则将显示加载文本。"},"v-model":{default:"[]",value:"",type:"any[]",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v 模型值。如果组件支持多 prop，则默认为空数组。"},"multi-sort":{default:"false",value:"",type:"boolean",description:"If true then one can sort on multiple properties.",description_zh:"如果为 true，则可以对多个属性进行排序。"},"must-sort":{default:"false",value:"",type:"boolean",description:"If true then one can not disable sorting, it will always switch between ascending and descending.",description_zh:"如果为 true，则无法禁用排序，它将始终在升序和降序之间切换。"},"no-filter":{default:"false",value:"",type:"boolean",description:"Disables all item filtering.",description_zh:"禁用所有项目筛选。"},":page":{default:"1",value:"",type:"string | number",description:"The current displayed page number (1-indexed).",description_zh:"当前显示的页码（1-索引）。",required:!0},"return-object":{default:"false",value:"",type:"boolean",description:"Changes the selection behavior to return the object directly rather than the value specified with item-value.",description_zh:"更改选择行为以直接返回对象，而不是使用 item-value 指定的值。"},search:{default:"undefined",value:"",type:"string",description:"Text input used to filter items.",description_zh:"用于筛选项目的文本输入。"},"select-strategy":{default:"page",value:"",type:"single / page / all",description:"Defines the strategy of selecting items in the list. Possible values are: ‘single’ (only one item can be selected at a time), ‘page’ (‘Select all’ button will select only items on the current page), ‘all’ (‘Select all’ button will select all items in the list).",description_zh:"定义在列表中选择项的策略。可能的值为：“单个”（一次只能选择一个项目）、“page”（“全选”按钮将仅选择当前页面上的项目）、“all”（“全选”按钮将选择列表中的所有项目）。"},"show-expand":{default:"false",value:"",type:"boolean",description:"Shows the expand icon.",description_zh:"显示展开图标。"},"show-select":{default:"false",value:"",type:"boolean",description:"Shows the column with checkboxes for selecting items in the list.",description_zh:"显示带有用于选择列表中项目的复选框的列。"},"sort-by":{default:"[]",value:"",type:"SortItem[]",description:"Changes which item property (or properties) should be used for sort order. Can be used with .sync modifier.",description_zh:"更改应用于排序顺序的项属性（或属性）。可与 .sync 修饰符一起使用。"},tag:{default:"div",value:"",type:"string",description:"Specify a custom tag used on the root element.",description_zh:"指定用于根元素的自定义标记。"},transition:{default:"{component: {name: 'fade-transition'}, hideOnLeave: true}",value:"",type:"  | { component: Component; hideOnLeave: boolean }  | string  | boolean  | (TransitionProps & { component: Component })",description:"Sets the component transition. Can be one of the built in or custom transition.",description_zh:"设置组件转换。可以是内置或自定义过渡之一。"},"value-comparator":{default:"undefined",value:"",type:"(a: any, b: any) => boolean",description:"Apply a custom comparison algorithm to compare model-value and values contains in the items prop.",description_zh:"应用自定义比较算法来比较 model-value 和 items prop 中包含的值。"}},link:"https://vuetifyjs.com/en/api/v-data-iterator/#links",link_zh:"https://vuetifyjs.com/en/api/v-data-iterator/#links",typeDetail:{},events:[{name:"update:currentItems",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"[any]",value:""},{name:"update:expanded",description:"The .sync event for expanded prop.",description_zh:"展开 prop 的 .sync 事件。",params:"[any]",value:""},{name:"update:groupBy",description:"The .sync event for groupBy prop.",description_zh:"groupBy 属性的 .sync 事件。",params:"[any]",value:""},{name:"update:itemsPerPage",description:"The .sync event for itemsPerPage prop.",description_zh:"itemsPerPage 属性的 .sync 事件。",params:"[number]",value:""},{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件模型更改时发出的事件。",params:"[any[]]",value:""},{name:"update:options",description:"The .sync event for options prop.",description_zh:"options prop 的 .sync 事件。",params:"[any]",value:""},{name:"update:page",description:"The .sync event for page prop.",description_zh:"page prop 的 .sync 事件。",params:"[number]",value:""},{name:"update:sortBy",description:"The .sync event for sortBy prop.",description_zh:"sortBy 属性的 .sync 事件。",params:"[any]",value:""}],methods:[],slots:[{name:"default",description:"The default slot. Use this to render your items.",description_zh:"默认插槽。使用它来渲染您的项目。",params:"{\n  page: number\n  itemsPerPage: number\n  sortBy: SortItem[]\n  pageCount: number\n  toggleSort: (column: InternalDataTableHeader) => void\n  prevPage: () => void\n  nextPage: () => void\n  setPage: (value: number) => void\n  setItemsPerPage: (value: number) => void\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  select: (items: SelectableItem[], value: boolean) => void\n  selectAll: (value: boolean) => void\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isGroupOpen: (group: Group) => boolean\n  toggleGroup: (group: Group) => void\n  items: DataIteratorItem[]\n  groupedItems: (DataIteratorItem | Group)[]\n}"},{name:"footer",description:"Defines a footer below the items.",description_zh:"定义项下方的页脚。",params:"{\n  page: number\n  itemsPerPage: number\n  sortBy: SortItem[]\n  pageCount: number\n  toggleSort: (column: InternalDataTableHeader) => void\n  prevPage: () => void\n  nextPage: () => void\n  setPage: (value: number) => void\n  setItemsPerPage: (value: number) => void\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  select: (items: SelectableItem[], value: boolean) => void\n  selectAll: (value: boolean) => void\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isGroupOpen: (group: Group) => boolean\n  toggleGroup: (group: Group) => void\n  items: DataIteratorItem[]\n  groupedItems: (DataIteratorItem | Group)[]\n}"},{name:"header",description:"Defines a header above the items.",description_zh:"定义项上方的标题。",params:"{\n  page: number\n  itemsPerPage: number\n  sortBy: SortItem[]\n  pageCount: number\n  toggleSort: (column: InternalDataTableHeader) => void\n  prevPage: () => void\n  nextPage: () => void\n  setPage: (value: number) => void\n  setItemsPerPage: (value: number) => void\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  select: (items: SelectableItem[], value: boolean) => void\n  selectAll: (value: boolean) => void\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isGroupOpen: (group: Group) => boolean\n  toggleGroup: (group: Group) => void\n  items: DataIteratorItem[]\n  groupedItems: (DataIteratorItem | Group)[]\n}"},{name:"loader",description:"Slot for custom loader (displayed when loading prop is equal to true).",description_zh:"自定义加载器的插槽（当加载 prop 等于 true 时显示）。",params:"{ color: string; isActive: boolean }"},{name:"no-data",description:"Defines content for when no items are provided.",description_zh:"定义未提供任何项目时的内容。",params:""}]},b={name:"VDataTable",props:{"cell-props":{default:"undefined",value:"",type:"  | Record<string, any>  | ((      data: Pick<        ItemKeySlot<any>,        'value' | 'item' | 'index' | 'internalItem' | 'column'      >,    ) => Record<string, any>)",description:"An object of additional props to be passed to each <td> in the table body. Also accepts a function that will be called for each cell. If the same prop is defined both here and in cellProps in a headers object, the value from the headers object will be used.",description_zh:"要传递<td>给表主体中每个属性的附加属性的对象。还接受将为每个单元格调用的函数。如果此处和 headers 对象的 cellProps 中都定义了相同的 prop，则将使用 headers 对象中的值。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},"custom-filter":{default:"undefined",value:"",type:"FilterFunction",description:"Function to filter items.",description_zh:"过滤项目的功能。"},"custom-key-filter":{default:"undefined",value:"",type:"unknown",description:"Function used on specific keys within the item object. customFilter is skipped for columns with customKeyFilter specified.",description_zh:"用于 item 对象中特定键的函数。对于指定了 customKeyFilter 的列，将跳过 customFilter。"},"custom-key-sort":{default:"undefined",value:"",type:"unknown",description:"Function used on specific keys within the item object. customSort is skipped for columns with customKeySort specified.",description_zh:"用于 item 对象中特定键的函数。对于指定了 customKeySort 的列，将跳过 customSort。"},density:{default:"default",value:"",type:"default / comfortable / compact",description:"Adjusts the vertical height of the table rows.",description_zh:"调整表格行的垂直高度。"},"disable-sort":{default:"false",value:"",type:"boolean",description:"Disables sorting completely.",description_zh:"完全禁用排序。"},expanded:{default:"[]",value:"",type:"string[]",description:"Whether the item is expanded or not.",description_zh:"项目是否展开。"},"expand-on-click":{default:"false",value:"",type:"boolean",description:"Expands item when the row is clicked.",description_zh:"单击行时展开项。"},"filter-keys":{default:"undefined",value:"",type:"string | string[]",description:"Array of specific keys to filter on the item.",description_zh:"要筛选项目的特定键的数组。"},"filter-mode":{default:"intersection",value:"",type:"every / some / union / intersection",description:"Controls how the results of customFilter and customKeyFilter are combined. All modes only apply customFilter to columns not specified in customKeyFilter.some: There is at least one match from either the custom filter or the custom key filter.every: All columns match either the custom filter or the custom key filter.union: There is at least one match from the custom filter, or all columns match the custom key filters.intersection: There is at least one match from the custom filter, and all columns match the custom key filters.",description_zh:"控制 customFilter 和 customKeyFilter 的结果组合方式。所有模式仅将 customFilter 应用于 customKeyFilter.some 中未指定的列：自定义筛选器或自定义键 filter.every 中至少有一个匹配项：所有列都与自定义筛选器或自定义键 filter.union 匹配：自定义筛选器中至少有一个匹配项，或者所有列都与自定义键 filters.intersection 匹配： 自定义筛选器中至少有一个匹配项，并且所有列都与自定义键筛选器匹配。"},"first-icon":{default:"$first",value:"",type:"string",description:"First icon.",description_zh:"第一个图标。"},"first-page-label":{default:"$vuetify.dataFooter.firstPage",value:"",type:"string",description:"Label for first page.",description_zh:"第一页的标签。"},"fixed-footer":{default:"false",value:"",type:"boolean",description:"Use the fixed-footer prop together with the height prop to fix the footer to the bottom of the table.",description_zh:"将固定页脚支撑与高度支撑一起使用，将页脚固定到桌子底部。"},"fixed-header":{default:"false",value:"",type:"boolean",description:"Fixed header to top of table.",description_zh:"将标题固定在表格顶部。"},"group-by":{default:"[]",value:"",type:"SortItem[]",description:"Changes which item property should be used for grouping items. Currently only supports a single grouping in the format: group or ['group']. When using an array, only the first element is considered. Can be used with .sync modifier.",description_zh:"更改应用于对项进行分组的项属性。目前仅支持以下格式的单个分组：group 或 ['group']。使用数组时，仅考虑第一个元素。可与 .sync 修饰符一起使用。"},"header-props":{default:"undefined",value:"",type:"unknown",description:"Pass props to the default header. See v-data-table-header API for more information.",description_zh:"将 props 传递到默认标头。有关更多信息，请参阅 v-data-table-header API。"},headers:{default:"undefined",value:"",type:"{  readonly key?:    | 'data-table-group'    | 'data-table-select'    | 'data-table-expand'    | (string & {})    | undefined  readonly value?: SelectItemKey<any>  readonly title?: string | undefined  readonly fixed?: boolean | undefined  readonly align?: 'start' | 'end' | 'center' | undefined  readonly width?: string | number | undefined  readonly minWidth?: string | undefined  readonly maxWidth?: string | undefined  readonly nowrap?: boolean | undefined  readonly headerProps?: { readonly [x: string]: any } | undefined  readonly cellProps?:    | { readonly [x: string]: any }    | ((        data: Pick<          ItemKeySlot<any>,          'value' | 'item' | 'index' | 'internalItem'        >,      ) => Record<string, any>)    | undefined  readonly sortable?: boolean | undefined  readonly sort?: DataTableCompareFunction<any> | undefined  readonly sortRaw?: DataTableCompareFunction<any> | undefined  readonly filter?: FilterFunction | undefined  readonly mobile?: boolean | undefined  readonly children?: readonly any[] | undefined}[]",description:"An array of objects that each describe a header column. See the example below for a definition of all properties.",description_zh:"每个对象描述一个标题列的对象数组。有关所有属性的定义，请参阅下面的示例。"},height:{default:"undefined",value:"",type:"string | number",description:"Set an explicit height of table.",description_zh:"设置表的显式高度。"},"hide-default-body":{default:"false",value:"",type:"boolean",description:"Hides the default body.",description_zh:"隐藏默认正文。"},"hide-default-footer":{default:"false",value:"",type:"boolean",description:"Hides the default footer. This has no effect on v-data-table-virtual.",description_zh:"隐藏默认页脚。这对 v-data-table-virtual 没有影响。"},"hide-default-header":{default:"false",value:"",type:"boolean",description:"Hides the default header.",description_zh:"隐藏默认标头。"},"hide-no-data":{default:"false",value:"",type:"boolean",description:"Hides the menu when there are no options to show. Useful for preventing the menu from opening before results are fetched asynchronously. Also has the effect of opening the menu when the items array changes if not already open.",description_zh:"当没有要显示的选项时隐藏菜单。可用于防止在异步获取结果之前打开菜单。还具有在项目数组更改时打开菜单（如果尚未打开）的效果。"},hover:{default:"false",value:"",type:"boolean",description:"Adds a hover effects to a table rows.",description_zh:"向表格行添加悬停效果。"},items:{default:"[]",value:"",type:"any[]",description:"An array of strings or objects used for automatically generating children components.",description_zh:"用于自动生成子组件的字符串或对象数组。",required:!0},"item-selectable":{default:"null",value:"",type:"SelectItemKey<any>",description:"Property on supplied items that indicates whether the item is selectable.",description_zh:"提供的项的属性，指示项是否可选。"},"items-per-page":{default:"10",value:"",type:"string | number",description:"Changes how many items per page should be visible. Can be used with .sync modifier. Setting this prop to -1 will display all items on the page.",description_zh:"更改每页应可见的项目数。可与 .sync 修饰符一起使用。将此道具设置为 -1 将显示页面上的所有项目。"},"items-per-page-options":{default:"[\n  {value: 10, title: '10'},\n  {value: 25, title: '25'},\n  {value: 50, title: '50'},\n  {value: 100, title: '100'},\n  {value: -1, title: '$vuetify.dataFooter.itemsPerPageAll'}\n]",value:"",type:"(number | { title: string; value: number })[]",description:"Array of options to show in the items-per-page dropdown.",description_zh:"要在每页项目下拉列表中显示的选项数组。"},"items-per-page-text":{default:"$vuetify.dataFooter.itemsPerPageText",value:"",type:"string",description:"Text for items-per-page dropdown.",description_zh:"每页项目下拉列表的文本。"},"item-value":{default:"id",value:"",type:"SelectItemKey<any>",description:"Property on supplied items that contains its value.",description_zh:"包含其值的已提供项的属性。"},"last-icon":{default:"$last",value:"",type:"string",description:"Last icon.",description_zh:"最后一个图标。"},"last-page-label":{default:"$vuetify.dataFooter.lastPage",value:"",type:"string",description:"Label for last page.",description_zh:"最后一页的标签。"},loading:{default:"false",value:"",type:"string | boolean",description:"Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - primary, secondary, success, info, warning, error) or a Boolean which uses the component color (set by color prop - if it’s supported by the component) or the primary color.",description_zh:"显示线性进度条。可以是指定应用于进度条的颜色的 String（任何材质颜色或主题颜色 - 主要颜色、次要颜色、成功颜色、信息颜色、警告颜色、错误颜色）或布尔值，它使用组件颜色（由颜色属性设置 - 如果组件支持）或主要颜色。"},"loading-text":{default:"$vuetify.dataIterator.loadingText",value:"",type:"string",description:"Text shown when the data is loading.",description_zh:"加载数据时显示的文本。"},mobile:{default:"false",value:"",type:"boolean",description:"Determines the display mode of the component. If true, the component will be displayed in mobile mode. If false, the component will be displayed in desktop mode. If null, will be based on the current mobile-breakpoint",description_zh:"确定组件的显示模式。如果为 true，则组件将以移动模式显示。如果为 false，则组件将以桌面模式显示。如果为 null，则将基于当前移动断点"},"mobile-breakpoint":{default:"undefined",value:"",type:"number / xs / sm / md / lg / xl / xxl",description:"Overrides the display configuration default screen size that the component should be considered in mobile.",description_zh:"覆盖组件在移动设备中应考虑的显示配置默认屏幕大小。"},"v-model":{default:"[]",value:"",type:"unknown",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v 模型值。如果组件支持多 prop，则默认为空数组。"},"multi-sort":{default:"false",value:"",type:"boolean",description:"If true then one can sort on multiple properties.",description_zh:"如果为 true，则可以对多个属性进行排序。"},"must-sort":{default:"false",value:"",type:"boolean",description:"If true then one can not disable sorting, it will always switch between ascending and descending.",description_zh:"如果为 true，则无法禁用排序，它将始终在升序和降序之间切换。"},"next-icon":{default:"$next",value:"",type:"string",description:"Next icon.",description_zh:"下一个图标。"},"next-page-label":{default:"$vuetify.dataFooter.nextPage",value:"",type:"string",description:"Label for next page.",description_zh:"下一页的标签。"},"no-data-text":{default:"$vuetify.noDataText",value:"",type:"string",description:"Text shown when no items are provided to the component.",description_zh:"未向组件提供任何项目时显示的文本。"},"no-filter":{default:"false",value:"",type:"boolean",description:"Disables all item filtering.",description_zh:"禁用所有项目筛选。"},page:{default:"1",value:"",type:"string | number",description:"The current displayed page number (1-indexed).",description_zh:"当前显示的页码（1-索引）。"},"page-text":{default:"$vuetify.dataFooter.pageText",value:"",type:"string",description:"Label for page number.",description_zh:"页码的标签。"},"prev-icon":{default:"$prev",value:"",type:"string",description:"Previous icon.",description_zh:"上一个图标。"},"prev-page-label":{default:"$vuetify.dataFooter.prevPage",value:"",type:"string",description:"Label for previous page.",description_zh:"上一页的标签。"},"return-object":{default:"false",value:"",type:"boolean",description:"Changes the selection behavior to return the object directly rather than the value specified with item-value.",description_zh:"更改选择行为以直接返回对象，而不是使用 item-value 指定的值。"},"row-props":{default:"undefined",value:"",type:"  | Record<string, any>  | ((      data: Pick<ItemKeySlot<any>, 'item' | 'index' | 'internalItem'>,    ) => Record<string, any>)",description:"An object of additional props to be passed to each <tr> in the table body. Also accepts a function that will be called for each row.",description_zh:"要传递<tr>给表主体中每个属性的附加属性的对象。还接受将为每行调用的函数。"},search:{default:"undefined",value:"",type:"string",description:"Text input used to filter items.",description_zh:"用于筛选项目的文本输入。"},"select-strategy":{default:"page",value:"",type:"page / single / all",description:"Defines the strategy of selecting items in the list. Possible values are: ‘single’ (only one item can be selected at a time), ‘page’ (‘Select all’ button will select only items on the current page), ‘all’ (‘Select all’ button will select all items in the list).",description_zh:"定义在列表中选择项的策略。可能的值为：“单个”（一次只能选择一个项目）、“page”（“全选”按钮将仅选择当前页面上的项目）、“all”（“全选”按钮将选择列表中的所有项目）。"},"show-current-page":{default:"false",value:"",type:"boolean",description:"Show current page number between prev/next icons.",description_zh:"在上一个/下一个图标之间显示当前页码。"},"show-expand":{default:"false",value:"",type:"boolean",description:"Shows the expand toggle in default rows.",description_zh:"在默认行中显示展开切换。"},"show-select":{default:"false",value:"",type:"boolean",description:"Shows the select checkboxes in both the header and rows (if using default rows).",description_zh:"显示标题和行中的选择复选框（如果使用默认行）。"},"sort-asc-icon":{default:"$sortAsc",value:"",type:"any",description:"Icon used for ascending sort button.",description_zh:"用于升序排序按钮的图标。"},"sort-by":{default:"[]",value:"",type:"SortItem[]",description:"Changes which item property (or properties) should be used for sort order. Can be used with .sync modifier.",description_zh:"更改应用于排序顺序的项属性（或属性）。可与 .sync 修饰符一起使用。"},"sort-desc-icon":{default:"$sortDesc",value:"",type:"any",description:"Icon used for descending sort button.",description_zh:"用于降序排序按钮的图标。"},sticky:{default:"false",value:"",type:"boolean",description:"Sticks the header to the top of the table.",description_zh:"将标题粘贴到表的顶部。"},tag:{default:"div",value:"",type:"string",description:"Specify a custom tag used on the root element.",description_zh:"指定用于根元素的自定义标记。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},"value-comparator":{default:"undefined",value:"",type:"(a: any, b: any) => boolean",description:"Apply a custom comparison algorithm to compare model-value and values contains in the items prop.",description_zh:"应用自定义比较算法来比较 model-value 和 items prop 中包含的值。"},width:{default:"undefined",value:"",type:"string | number",description:"Sets the width for the component.",description_zh:"设置元件的宽度。"}},link:"https://vuetifyjs.com/en/api/v-data-table/#links",link_zh:"https://vuetifyjs.com/en/api/v-data-table/#links",typeDetail:{},events:[{name:"update:currentItems",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"[any]",value:""},{name:"update:expanded",description:"Emits when the expanded property of the options prop is updated.",description_zh:"在 options 属性的 expanded 属性更新时发出。",params:"[any]",value:""},{name:"update:groupBy",description:"Emits when the group-by property of the options property is updated.",description_zh:"在更新 options 属性的 group-by 属性时发出。",params:"[any]",value:""},{name:"update:itemsPerPage",description:"Emits when the items-per-page property of the options prop is updated.",description_zh:"在更新 options 属性的 items-per-page 属性时发出。",params:"[number]",value:""},{name:"update:modelValue",description:"Emits when the component’s model changes.",description_zh:"在组件的模型更改时发出。",params:"[unknown]",value:""},{name:"update:options",description:"Emits when one of the options properties is updated.",description_zh:"在其中一个选项属性更新时发出。",params:"[any]",value:""},{name:"update:page",description:"Emits when the page property of the options prop is updated.",description_zh:"在 options 属性更新时发出 options 属性。",params:"[number]",value:""},{name:"update:sortBy",description:"Emits when the sortBy property of the options prop is updated.",description_zh:"在更新选项属性的 sortBy 属性时发出。",params:"[any]",value:""}],methods:[],slots:[{name:"[`header.${string}`]",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  column: InternalDataTableHeader\n  selectAll: (value: boolean) => void\n  isSorted: (column: InternalDataTableHeader) => boolean\n  toggleSort: (column: InternalDataTableHeader) => void\n  sortBy: SortItem[]\n  someSelected: boolean\n  allSelected: boolean\n  getSortIcon: (\n    column: InternalDataTableHeader,\n  ) =>\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n}"},{name:"[`item.${string}`]",description:"Slot for custom rendering of a row cell.",description_zh:"用于自定义呈现行单元格的插槽。",params:"{\n  index: number\n  item: any\n  internalItem: DataTableItem\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n} & { value: any; column: InternalDataTableHeader }"},{name:"body",description:"Slot to replace the default table <tbody>.",description_zh:"Slot 替换默认表 <tbody>。",params:"{\n  page: number\n  itemsPerPage: number\n  sortBy: SortItem[]\n  pageCount: number\n  toggleSort: (column: InternalDataTableHeader) => void\n  setItemsPerPage: (value: number) => void\n  someSelected: boolean\n  allSelected: boolean\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  select: (items: SelectableItem[], value: boolean) => void\n  selectAll: (value: boolean) => void\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isGroupOpen: (group: Group) => boolean\n  toggleGroup: (group: Group) => void\n  items: any[]\n  internalItems: DataTableItem[]\n  groupedItems: (DataTableItem | Group)[]\n  columns: InternalDataTableHeader[]\n  headers: InternalDataTableHeader[][]\n}"},{name:"body.append",description:"Appends elements to the end of the default table <tbody>.",description_zh:"将元素附加到 default table 的末尾 <tbody>。",params:"{\n  page: number\n  itemsPerPage: number\n  sortBy: SortItem[]\n  pageCount: number\n  toggleSort: (column: InternalDataTableHeader) => void\n  setItemsPerPage: (value: number) => void\n  someSelected: boolean\n  allSelected: boolean\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  select: (items: SelectableItem[], value: boolean) => void\n  selectAll: (value: boolean) => void\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isGroupOpen: (group: Group) => boolean\n  toggleGroup: (group: Group) => void\n  items: any[]\n  internalItems: DataTableItem[]\n  groupedItems: (DataTableItem | Group)[]\n  columns: InternalDataTableHeader[]\n  headers: InternalDataTableHeader[][]\n}"},{name:"body.prepend",description:"Prepends elements to the start of the default table <tbody>.",description_zh:"将 elements 添加到默认 table 的开头 <tbody>。",params:"{\n  page: number\n  itemsPerPage: number\n  sortBy: SortItem[]\n  pageCount: number\n  toggleSort: (column: InternalDataTableHeader) => void\n  setItemsPerPage: (value: number) => void\n  someSelected: boolean\n  allSelected: boolean\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  select: (items: SelectableItem[], value: boolean) => void\n  selectAll: (value: boolean) => void\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isGroupOpen: (group: Group) => boolean\n  toggleGroup: (group: Group) => void\n  items: any[]\n  internalItems: DataTableItem[]\n  groupedItems: (DataTableItem | Group)[]\n  columns: InternalDataTableHeader[]\n  headers: InternalDataTableHeader[][]\n}"},{name:"bottom",description:"Slot for custom rendering of a data table footer.",description_zh:"用于自定义呈现数据表页脚的插槽。",params:"{\n  page: number\n  itemsPerPage: number\n  sortBy: SortItem[]\n  pageCount: number\n  toggleSort: (column: InternalDataTableHeader) => void\n  setItemsPerPage: (value: number) => void\n  someSelected: boolean\n  allSelected: boolean\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  select: (items: SelectableItem[], value: boolean) => void\n  selectAll: (value: boolean) => void\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isGroupOpen: (group: Group) => boolean\n  toggleGroup: (group: Group) => void\n  items: any[]\n  internalItems: DataTableItem[]\n  groupedItems: (DataTableItem | Group)[]\n  columns: InternalDataTableHeader[]\n  headers: InternalDataTableHeader[][]\n}"},{name:"colgroup",description:"Slot to replace the default rendering of the <colgroup> element.",description_zh:"Slot 替换元素的默认渲染<colgroup>。",params:"{\n  page: number\n  itemsPerPage: number\n  sortBy: SortItem[]\n  pageCount: number\n  toggleSort: (column: InternalDataTableHeader) => void\n  setItemsPerPage: (value: number) => void\n  someSelected: boolean\n  allSelected: boolean\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  select: (items: SelectableItem[], value: boolean) => void\n  selectAll: (value: boolean) => void\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isGroupOpen: (group: Group) => boolean\n  toggleGroup: (group: Group) => void\n  items: any[]\n  internalItems: DataTableItem[]\n  groupedItems: (DataTableItem | Group)[]\n  columns: InternalDataTableHeader[]\n  headers: InternalDataTableHeader[][]\n}"},{name:"data-table-group",description:"Slot for custom rendering of a group.",description_zh:"用于自定义渲染组的插槽。",params:"{ item: Group; count: number; props: Record<string, unknown> }"},{name:"data-table-select",description:"Slot for custom rendering of a header cell with the select checkbox.",description_zh:"用于自定义渲染标题单元格的插槽，带有 select 复选框。",params:"{ props: Record<string, unknown> }"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{\n  page: number\n  itemsPerPage: number\n  sortBy: SortItem[]\n  pageCount: number\n  toggleSort: (column: InternalDataTableHeader) => void\n  setItemsPerPage: (value: number) => void\n  someSelected: boolean\n  allSelected: boolean\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  select: (items: SelectableItem[], value: boolean) => void\n  selectAll: (value: boolean) => void\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isGroupOpen: (group: Group) => boolean\n  toggleGroup: (group: Group) => void\n  items: any[]\n  internalItems: DataTableItem[]\n  groupedItems: (DataTableItem | Group)[]\n  columns: InternalDataTableHeader[]\n  headers: InternalDataTableHeader[][]\n}"},{name:"expanded-row",description:"Slot for custom rendering of an expanded row.",description_zh:"用于自定义渲染展开行的槽。",params:"{\n  index: number\n  item: any\n  internalItem: DataTableItem\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n} & { columns: InternalDataTableHeader[] }"},{name:"footer.prepend",description:"Adds content to the empty space in the footer.",description_zh:"将内容添加到页脚的空白处。",params:""},{name:"group-header",description:"Slot for custom rendering of a group header.",description_zh:"用于自定义呈现组标题的插槽。",params:"{\n  index: number\n  item: Group\n  columns: InternalDataTableHeader[]\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  toggleGroup: (group: Group) => void\n  isGroupOpen: (group: Group) => boolean\n}"},{name:"header.data-table-expand",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  column: InternalDataTableHeader\n  selectAll: (value: boolean) => void\n  isSorted: (column: InternalDataTableHeader) => boolean\n  toggleSort: (column: InternalDataTableHeader) => void\n  sortBy: SortItem[]\n  someSelected: boolean\n  allSelected: boolean\n  getSortIcon: (\n    column: InternalDataTableHeader,\n  ) =>\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n}"},{name:"header.data-table-select",description:"Slot to replace the default v-checkbox-btn in header.",description_zh:"Slot 替换 header 中默认的 v-checkbox-btn。",params:"{\n  column: InternalDataTableHeader\n  selectAll: (value: boolean) => void\n  isSorted: (column: InternalDataTableHeader) => boolean\n  toggleSort: (column: InternalDataTableHeader) => void\n  sortBy: SortItem[]\n  someSelected: boolean\n  allSelected: boolean\n  getSortIcon: (\n    column: InternalDataTableHeader,\n  ) =>\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n}"},{name:"headers",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  headers: InternalDataTableHeader[][]\n  columns: InternalDataTableHeader[]\n  sortBy: SortItem[]\n  someSelected: boolean\n  allSelected: boolean\n  toggleSort: (column: InternalDataTableHeader) => void\n  selectAll: (value: boolean) => void\n  getSortIcon: (\n    column: InternalDataTableHeader,\n  ) =>\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n  isSorted: (column: InternalDataTableHeader) => boolean\n}"},{name:"item",description:"Slot to replace the default rendering of a row.",description_zh:"Slot 替换行的默认渲染。",params:"{\n  index: number\n  item: any\n  internalItem: DataTableItem\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n} & { columns: InternalDataTableHeader[] } & { props: Record<string, any> }"},{name:"item.data-table-expand",description:"Slot to replace the default v-icon used when expanding rows.",description_zh:"用于替换展开行时使用的默认 v 图标的插槽。",params:"Omit<ItemKeySlot<any>, 'value'>"},{name:"item.data-table-select",description:"Slot to replace the default v-checkbox-btn used when selecting rows.",description_zh:"用于替换选择行时使用的默认 v-checkbox-btn 的插槽。",params:"Omit<ItemKeySlot<any>, 'value'>"},{name:"loader",description:"Slot for custom loader (displayed when loading prop is equal to true).",description_zh:"自定义加载器的插槽（当加载 prop 等于 true 时显示）。",params:"{ color: string; isActive: boolean }"},{name:"loading",description:"Defines content for when loading is true and no items are provided.",description_zh:"定义 loading 为 true 且未提供任何项目时的内容。",params:""},{name:"no-data",description:"Defines content for when no items are provided.",description_zh:"定义未提供任何项目时的内容。",params:""},{name:"tbody",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  page: number\n  itemsPerPage: number\n  sortBy: SortItem[]\n  pageCount: number\n  toggleSort: (column: InternalDataTableHeader) => void\n  setItemsPerPage: (value: number) => void\n  someSelected: boolean\n  allSelected: boolean\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  select: (items: SelectableItem[], value: boolean) => void\n  selectAll: (value: boolean) => void\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isGroupOpen: (group: Group) => boolean\n  toggleGroup: (group: Group) => void\n  items: any[]\n  internalItems: DataTableItem[]\n  groupedItems: (DataTableItem | Group)[]\n  columns: InternalDataTableHeader[]\n  headers: InternalDataTableHeader[][]\n}"},{name:"tfoot",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  page: number\n  itemsPerPage: number\n  sortBy: SortItem[]\n  pageCount: number\n  toggleSort: (column: InternalDataTableHeader) => void\n  setItemsPerPage: (value: number) => void\n  someSelected: boolean\n  allSelected: boolean\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  select: (items: SelectableItem[], value: boolean) => void\n  selectAll: (value: boolean) => void\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isGroupOpen: (group: Group) => boolean\n  toggleGroup: (group: Group) => void\n  items: any[]\n  internalItems: DataTableItem[]\n  groupedItems: (DataTableItem | Group)[]\n  columns: InternalDataTableHeader[]\n  headers: InternalDataTableHeader[][]\n}"},{name:"thead",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  page: number\n  itemsPerPage: number\n  sortBy: SortItem[]\n  pageCount: number\n  toggleSort: (column: InternalDataTableHeader) => void\n  setItemsPerPage: (value: number) => void\n  someSelected: boolean\n  allSelected: boolean\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  select: (items: SelectableItem[], value: boolean) => void\n  selectAll: (value: boolean) => void\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isGroupOpen: (group: Group) => boolean\n  toggleGroup: (group: Group) => void\n  items: any[]\n  internalItems: DataTableItem[]\n  groupedItems: (DataTableItem | Group)[]\n  columns: InternalDataTableHeader[]\n  headers: InternalDataTableHeader[][]\n}"},{name:"top",description:"Slot to add content above the table.",description_zh:"用于在表格上方添加内容的插槽。",params:"{\n  page: number\n  itemsPerPage: number\n  sortBy: SortItem[]\n  pageCount: number\n  toggleSort: (column: InternalDataTableHeader) => void\n  setItemsPerPage: (value: number) => void\n  someSelected: boolean\n  allSelected: boolean\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  select: (items: SelectableItem[], value: boolean) => void\n  selectAll: (value: boolean) => void\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isGroupOpen: (group: Group) => boolean\n  toggleGroup: (group: Group) => void\n  items: any[]\n  internalItems: DataTableItem[]\n  groupedItems: (DataTableItem | Group)[]\n  columns: InternalDataTableHeader[]\n  headers: InternalDataTableHeader[][]\n}"}]},g={name:"VDataTableFooter",props:{},link:"https://vuetifyjs.com/zh-Hans/api/v-data-table-footer/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-data-table-footer/#links",typeDetail:{},events:[],methods:[],slots:[{name:"[string]",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"}]},y={name:"VDataTableHeaders",props:{color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},"disable-sort":{default:"false",value:"",type:"boolean",version:"",description:"Toggles rendering of sort button.",description_zh:"切换排序按钮的渲染。",required:!1},"header-props":{default:"undefined",value:"",type:"unknown",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},loading:{default:"false",value:"",type:"string | boolean",version:"",description:"Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - primary, secondary, success, info, warning, error) or a Boolean which uses the component color (set by color prop - if it’s supported by the component) or the primary color.",description_zh:"显示线性进度条。可以是指定应用于进度条的颜色的 String（任何材料颜色或主题颜色 - primary、secondary、success、info、warning、error），也可以是使用组件颜色（由 color 属性设置 - 如果组件支持）或主要颜色的 Boolean。",required:!1},mobile:{default:"false",value:"",type:"boolean",version:"",description:"Determines the display mode of the component. If true, the component will be displayed in mobile mode. If false, the component will be displayed in desktop mode. If null, will be based on the current mobile-breakpoint",description_zh:"确定组件的显示模式。如果为 true，则组件将以移动模式显示。如果为 false，则组件将以桌面模式显示。如果为 null，则将基于当前的 mobile-breakpoint",required:!1},"mobile-breakpoint":{default:"undefined",value:"",type:"number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'",version:"",description:"Overrides the display configuration default screen size that the component should be considered in mobile.",description_zh:"覆盖组件在移动设备中应考虑的显示配置默认屏幕大小。",required:!1},"multi-sort":{default:"false",value:"",type:"boolean",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},"sort-asc-icon":{default:"'$sortAsc'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Icon used for ascending sort button.",description_zh:"用于升序排序按钮的图标。",required:!1},"sort-desc-icon":{default:"'$sortDesc'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Icon used for descending sort button.",description_zh:"用于降序排序按钮的图标。",required:!1},sticky:{default:"false",value:"",type:"boolean",version:"",description:"Sticks the header to the top of the table.",description_zh:"将标题贴在表格的顶部。",required:!1}},link:"https://vuetifyjs.com/en/api/v-data-table-headers/",link_zh:"https://vuetifyjs.com/en/api/v-data-table-headers/",typeDetail:{},events:[],methods:[],slots:[{name:"[`header.${string}`]",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  column: InternalDataTableHeader\n  selectAll: (value: boolean) => void\n  isSorted: (column: InternalDataTableHeader) => boolean\n  toggleSort: (column: InternalDataTableHeader) => void\n  sortBy: SortItem[]\n  someSelected: boolean\n  allSelected: boolean\n  getSortIcon: (\n    column: InternalDataTableHeader,\n  ) =>\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n}"},{name:"header.data-table-expand",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  column: InternalDataTableHeader\n  selectAll: (value: boolean) => void\n  isSorted: (column: InternalDataTableHeader) => boolean\n  toggleSort: (column: InternalDataTableHeader) => void\n  sortBy: SortItem[]\n  someSelected: boolean\n  allSelected: boolean\n  getSortIcon: (\n    column: InternalDataTableHeader,\n  ) =>\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n}"},{name:"header.data-table-select",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  column: InternalDataTableHeader\n  selectAll: (value: boolean) => void\n  isSorted: (column: InternalDataTableHeader) => boolean\n  toggleSort: (column: InternalDataTableHeader) => void\n  sortBy: SortItem[]\n  someSelected: boolean\n  allSelected: boolean\n  getSortIcon: (\n    column: InternalDataTableHeader,\n  ) =>\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n}"},{name:"headers",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  headers: InternalDataTableHeader[][]\n  columns: InternalDataTableHeader[]\n  sortBy: SortItem[]\n  someSelected: boolean\n  allSelected: boolean\n  toggleSort: (column: InternalDataTableHeader) => void\n  selectAll: (value: boolean) => void\n  getSortIcon: (\n    column: InternalDataTableHeader,\n  ) =>\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n  isSorted: (column: InternalDataTableHeader) => boolean\n}"},{name:"loader",description:"Slot for custom loader (displayed when loading prop is equal to true).",description_zh:"自定义加载器的插槽（当加载 prop 等于 true 时显示）。",params:"{ color: string; isActive: boolean }"}],exposed:[]},I={name:"VDataTableRow",props:{"cell-props":{default:"undefined",value:"",type:"  | Record<string, any>  | ((      data: Pick<        ItemKeySlot<unknown>,        'value' | 'index' | 'item' | 'internalItem' | 'column'      >,    ) => Record<string, any>)",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）"},":index":{default:"undefined",value:"",type:"number",description:"Row index.",description_zh:"行索引。"},item:{default:"undefined",value:"",type:"unknown",description:"Data (key, index and column values) of the displayed item.",description_zh:"显示项目的数据（键值、索引值和列值）。"},mobile:{default:"false",value:"",type:"boolean",description:"Determines the display mode of the component. If true, the component will be displayed in mobile mode. If false, the component will be displayed in desktop mode. If null, will be based on the current mobile-breakpoint",description_zh:"确定组件的显示模式。如果为 true，则组件将以移动模式显示。如果为 false，则组件将以桌面模式显示。如果为 null，则将基于当前移动断点"},"mobile-breakpoint":{default:"undefined",value:"",type:"number / xs / sm / md / lg / xl / xxl",description:"Overrides the display configuration default screen size that the component should be considered in mobile.",description_zh:"覆盖组件在移动设备中应考虑的显示配置默认屏幕大小。"}},link:"https://vuetifyjs.com/en/api/v-data-table-row/#links",link_zh:"https://vuetifyjs.com/en/api/v-data-table-row/#links",typeDetail:{},events:[{name:"click",description:"Event that is emitted when the component is clicked.",description_zh:"单击组件时发出的事件。",params:"[MouseEvent]",value:""},{name:"contextmenu",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"[MouseEvent]",value:""},{name:"dblclick",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"[MouseEvent]",value:""}],methods:[],slots:[{name:"[`header.${string}`]",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  column: InternalDataTableHeader\n  selectAll: (value: boolean) => void\n  isSorted: (column: InternalDataTableHeader) => boolean\n  toggleSort: (column: InternalDataTableHeader) => void\n  sortBy: SortItem[]\n  someSelected: boolean\n  allSelected: boolean\n  getSortIcon: (\n    column: InternalDataTableHeader,\n  ) =>\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n}"},{name:"[`item.${string}`]",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  index: number\n  item: unknown\n  internalItem: DataTableItem\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n} & { value: any; column: InternalDataTableHeader }"},{name:"header.data-table-expand",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  column: InternalDataTableHeader\n  selectAll: (value: boolean) => void\n  isSorted: (column: InternalDataTableHeader) => boolean\n  toggleSort: (column: InternalDataTableHeader) => void\n  sortBy: SortItem[]\n  someSelected: boolean\n  allSelected: boolean\n  getSortIcon: (\n    column: InternalDataTableHeader,\n  ) =>\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n}"},{name:"header.data-table-select",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  column: InternalDataTableHeader\n  selectAll: (value: boolean) => void\n  isSorted: (column: InternalDataTableHeader) => boolean\n  toggleSort: (column: InternalDataTableHeader) => void\n  sortBy: SortItem[]\n  someSelected: boolean\n  allSelected: boolean\n  getSortIcon: (\n    column: InternalDataTableHeader,\n  ) =>\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n}"},{name:"item.data-table-expand",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"Omit<ItemKeySlot<unknown>, 'value'>"},{name:"item.data-table-select",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"Omit<ItemKeySlot<unknown>, 'value'>"}]},S={name:"VDataTableRows",props:{"cell-props":{default:"undefined",value:"",type:"  | Record<string, any>  | ((      data: Pick<        ItemKeySlot<any>,        'value' | 'item' | 'index' | 'internalItem' | 'column'      >,    ) => Record<string, any>)",description:"An object of additional props to be passed to each <td> in the table body. Also accepts a function that will be called for each cell. If the same prop is defined both here and in cellProps in a headers object, the value from the headers object will be used.",description_zh:"要传递<td>给表主体中每个属性的附加属性的对象。还接受将为每个单元格调用的函数。如果此处和 headers 对象的 cellProps 中都定义了相同的 prop，则将使用 headers 对象中的值。"},"hide-no-data":{default:"false",value:"",type:"boolean",description:"Hides the menu when there are no options to show. Useful for preventing the menu from opening before results are fetched asynchronously. Also has the effect of opening the menu when the items array changes if not already open.",description_zh:"当没有要显示的选项时隐藏菜单。可用于防止在异步获取结果之前打开菜单。还具有在项目数组更改时打开菜单（如果尚未打开）的效果。"},items:{default:"[]",value:"",type:"(DataTableItem | Group)[]",description:"An array of strings or objects used for automatically generating children components.",description_zh:"用于自动生成子组件的字符串或对象数组。"},loading:{default:"false",value:"",type:"string | boolean",description:"Displays loading slot if set to true",description_zh:"如果设置为 true，则显示加载槽"},"loading-text":{default:"$vuetify.dataIterator.loadingText",value:"",type:"string",description:"Text shown when the data is loading.",description_zh:"加载数据时显示的文本。"},mobile:{default:"false",value:"",type:"boolean",description:"Determines the display mode of the component. If true, the component will be displayed in mobile mode. If false, the component will be displayed in desktop mode. If null, will be based on the current mobile-breakpoint",description_zh:"确定组件的显示模式。如果为 true，则组件将以移动模式显示。如果为 false，则组件将以桌面模式显示。如果为 null，则将基于当前移动断点"},"mobile-breakpoint":{default:"undefined",value:"",type:"number / xs / sm / md / lg / xl / xxl",description:"Overrides the display configuration default screen size that the component should be considered in mobile.",description_zh:"覆盖组件在移动设备中应考虑的显示配置默认屏幕大小。"},"no-data-text":{default:"$vuetify.noDataText",value:"",type:"string",description:"Text shown when no items are provided to the component.",description_zh:"未向组件提供任何项目时显示的文本。"},"row-props":{default:"undefined",value:"",type:"  | Record<string, any>  | ((      data: Pick<ItemKeySlot<any>, 'item' | 'index' | 'internalItem'>,    ) => Record<string, any>)",description:"An object of additional props to be passed to each <tr> in the table body. Also accepts a function that will be called for each row.",description_zh:"要传递<tr>给表主体中每个属性的附加属性的对象。还接受将为每行调用的函数。"}},link:"https://vuetifyjs.com/en/api/v-data-table-rows/#links",link_zh:"https://vuetifyjs.com/en/api/v-data-table-rows/#links",typeDetail:{},events:[],methods:[],slots:[{name:"[`header.${string}`]",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  column: InternalDataTableHeader\n  selectAll: (value: boolean) => void\n  isSorted: (column: InternalDataTableHeader) => boolean\n  toggleSort: (column: InternalDataTableHeader) => void\n  sortBy: SortItem[]\n  someSelected: boolean\n  allSelected: boolean\n  getSortIcon: (\n    column: InternalDataTableHeader,\n  ) =>\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n}"},{name:"[`item.${string}`]",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  index: number\n  item: unknown\n  internalItem: DataTableItem\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n} & { value: any; column: InternalDataTableHeader }"},{name:"data-table-group",description:"Slot for custom rendering of a group.",description_zh:"用于自定义渲染组的插槽。",params:"{ item: Group; count: number; props: Record<string, unknown> }"},{name:"data-table-select",description:"Slot for custom rendering of a header cell with the select checkbox.",description_zh:"用于自定义渲染标题单元格的插槽，带有 select 复选框。",params:"{ props: Record<string, unknown> }"},{name:"expanded-row",description:"Slot for custom rendering of an expanded row.",description_zh:"用于自定义渲染展开行的槽。",params:"{\n  index: number\n  item: unknown\n  internalItem: DataTableItem\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n} & { columns: InternalDataTableHeader[] }"},{name:"group-header",description:"Slot for custom rendering of a group header.",description_zh:"用于自定义呈现组标题的插槽。",params:"{\n  index: number\n  item: Group\n  columns: InternalDataTableHeader[]\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  toggleGroup: (group: Group) => void\n  isGroupOpen: (group: Group) => boolean\n}"},{name:"header.data-table-expand",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  column: InternalDataTableHeader\n  selectAll: (value: boolean) => void\n  isSorted: (column: InternalDataTableHeader) => boolean\n  toggleSort: (column: InternalDataTableHeader) => void\n  sortBy: SortItem[]\n  someSelected: boolean\n  allSelected: boolean\n  getSortIcon: (\n    column: InternalDataTableHeader,\n  ) =>\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n}"},{name:"header.data-table-select",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  column: InternalDataTableHeader\n  selectAll: (value: boolean) => void\n  isSorted: (column: InternalDataTableHeader) => boolean\n  toggleSort: (column: InternalDataTableHeader) => void\n  sortBy: SortItem[]\n  someSelected: boolean\n  allSelected: boolean\n  getSortIcon: (\n    column: InternalDataTableHeader,\n  ) =>\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n}"},{name:"item",description:"Define a custom item appearance.",description_zh:"定义自定义项外观。",params:"{\n  index: number\n  item: unknown\n  internalItem: DataTableItem\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n} & { columns: InternalDataTableHeader[] } & { props: Record<string, any> }"},{name:"item.data-table-expand",description:"Slot for custom rendering of a row cell with the expand icon.",description_zh:"用于自定义呈现带有展开图标的行单元格的插槽。",params:"Omit<ItemKeySlot<unknown>, 'value'>"},{name:"item.data-table-select",description:"Slot for custom rendering of a row cell with the select checkbox.",description_zh:"用于自定义渲染行单元格的插槽 select 复选框。",params:"Omit<ItemKeySlot<unknown>, 'value'>"},{name:"loading",description:"Slot for custom rendering of the loading state.",description_zh:"用于自定义渲染加载状态的插槽。",params:""},{name:"no-data",description:"Defines content for when no items are provided.",description_zh:"定义未提供任何项目时的内容。",params:""}],suggestions:["VDataTableRow"]},z={name:"VDataTableServer",props:{"cell-props":{default:"undefined",value:"",type:"  | Record<string, any>  | ((      data: Pick<        ItemKeySlot<any>,        'value' | 'item' | 'index' | 'internalItem' | 'column'      >,    ) => Record<string, any>)",description:"An object of additional props to be passed to each <td> in the table body. Also accepts a function that will be called for each cell. If the same prop is defined both here and in cellProps in a headers object, the value from the headers object will be used.",description_zh:"要传递<td>给表主体中每个属性的附加属性的对象。还接受将为每个单元格调用的函数。如果此处和 headers 对象的 cellProps 中都定义了相同的 prop，则将使用 headers 对象中的值。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},"custom-key-sort":{default:"undefined",value:"",type:"unknown",description:"Function used on specific keys within the item object. customSort is skipped for columns with customKeySort specified.",description_zh:"用于 item 对象中特定键的函数。对于指定了 customKeySort 的列，将跳过 customSort。"},density:{default:"default",value:"",type:"default / comfortable / compact",description:"Adjusts the vertical height used by the component.",description_zh:"调整元件使用的垂直高度。"},"disable-sort":{default:"false",value:"",type:"boolean",description:"Toggles rendering of sort button.",description_zh:"切换排序按钮的渲染。"},expanded:{default:"[]",value:"",type:"string[]",description:"Whether the item is expanded or not.",description_zh:"项目是否展开。"},"expand-on-click":{default:"false",value:"",type:"boolean",description:"Expands item when the row is clicked.",description_zh:"单击行时展开项。"},"first-icon":{default:"$first",value:"",type:"string",description:"First icon.",description_zh:"第一个图标。"},"first-page-label":{default:"$vuetify.dataFooter.firstPage",value:"",type:"string",description:"Label for first page.",description_zh:"第一页的标签。"},"fixed-footer":{default:"false",value:"",type:"boolean",description:"Use the fixed-footer prop together with the height prop to fix the footer to the bottom of the table.",description_zh:"将固定页脚支撑与高度支撑一起使用，将页脚固定到桌子底部。"},"fixed-header":{default:"false",value:"",type:"boolean",description:"Use the fixed-header prop together with the height prop to fix the header to the top of the table.",description_zh:"将固定标题与高度支柱一起使用，将标题固定到桌子的顶部。"},"group-by":{default:"[]",value:"",type:"SortItem[]",description:"Defines the grouping of the table items.",description_zh:"定义表项的分组。"},"header-props":{default:"undefined",value:"",type:"unknown",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）"},headers:{default:"undefined",value:"",type:"{  readonly key?:    | 'data-table-group'    | 'data-table-select'    | 'data-table-expand'    | (string & {})    | undefined  readonly value?: SelectItemKey<Record<string, any>>  readonly title?: string | undefined  readonly fixed?: boolean | undefined  readonly align?: 'start' | 'end' | 'center' | undefined  readonly width?: string | number | undefined  readonly minWidth?: string | undefined  readonly maxWidth?: string | undefined  readonly nowrap?: boolean | undefined  readonly headerProps?: { readonly [x: string]: any } | undefined  readonly cellProps?:    | { readonly [x: string]: any }    | ((        data: Pick<          ItemKeySlot<any>,          'value' | 'item' | 'index' | 'internalItem'        >,      ) => Record<string, any>)    | undefined  readonly sortable?: boolean | undefined  readonly sort?: DataTableCompareFunction<any> | undefined  readonly sortRaw?: DataTableCompareFunction<any> | undefined  readonly filter?: FilterFunction | undefined  readonly mobile?: boolean | undefined  readonly children?:    | readonly {        readonly key?:          | 'data-table-group'          | 'data-table-select'          | 'data-table-expand'          | (string & {})          | undefined        readonly value?: SelectItemKey<Record<string, any>>        readonly title?: string | undefined        readonly fixed?: boolean | undefined        readonly align?: 'start' | 'end' | 'center' | undefined        readonly width?: string | number | undefined        readonly minWidth?: string | undefined        readonly maxWidth?: string | undefined        readonly nowrap?: boolean | undefined        readonly headerProps?: { readonly [x: string]: any } | undefined        readonly cellProps?:          | { readonly [x: string]: any }          | ((              data: Pick<                ItemKeySlot<any>,                'value' | 'item' | 'index' | 'internalItem'              >,            ) => Record<string, any>)          | undefined        readonly sortable?: boolean | undefined        readonly sort?: DataTableCompareFunction<any> | undefined        readonly sortRaw?: DataTableCompareFunction<any> | undefined        readonly filter?: FilterFunction | undefined        readonly mobile?: boolean | undefined        readonly children?: readonly any[] | undefined      }[]    | undefined}[]",description:"An array of objects that each describe a header column.",description_zh:"每个对象描述一个标题列的对象数组。"},height:{default:"undefined",value:"",type:"string | number",description:"Use the height prop to set the height of the table.",description_zh:"使用高度道具设置桌子的高度。"},"hide-default-body":{default:"false",value:"",type:"boolean",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）"},"hide-default-footer":{default:"false",value:"",type:"boolean",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）"},"hide-default-header":{default:"false",value:"",type:"boolean",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）"},"hide-no-data":{default:"false",value:"",type:"boolean",description:"Hides the menu when there are no options to show. Useful for preventing the menu from opening before results are fetched asynchronously. Also has the effect of opening the menu when the items array changes if not already open.",description_zh:"当没有要显示的选项时隐藏菜单。可用于防止在异步获取结果之前打开菜单。还具有在项目数组更改时打开菜单（如果尚未打开）的效果。"},hover:{default:"false",value:"",type:"boolean",description:"Will add a hover effect to a table’s row when the mouse is over it.",description_zh:"当鼠标悬停在表格的行上时，将向表格的行添加悬停效果。"},items:{default:"[]",value:"",type:"any[]",description:"An array of strings or objects used for automatically generating children components.",description_zh:"用于自动生成子组件的字符串或对象数组。"},"item-selectable":{default:"null",value:"",type:"SelectItemKey<any>",description:"Property on supplied items that indicates whether the item is selectable.",description_zh:"提供的项的属性，指示项是否可选。"},"items-length":{default:"undefined",value:"",type:"string | number",description:"Number of all items.",description_zh:"所有项目的数量。"},"items-per-page":{default:"10",value:"",type:"string | number",description:"The number of items to display on each page.",description_zh:"要在每页上显示的项目数。"},"items-per-page-options":{default:"[\n  {value: 10, title: '10'},\n  {value: 25, title: '25'},\n  {value: 50, title: '50'},\n  {value: 100, title: '100'},\n  {value: -1, title: '$vuetify.dataFooter.itemsPerPageAll'}\n]",value:"",type:"(number | { title: string; value: number })[]",description:"Array of options to show in the items-per-page dropdown.",description_zh:"要在每页项目下拉列表中显示的选项数组。"},"items-per-page-text":{default:"$vuetify.dataFooter.itemsPerPageText",value:"",type:"string",description:"Text for items-per-page dropdown.",description_zh:"每页项目下拉列表的文本。"},"item-value":{default:"id",value:"",type:"SelectItemKey<any>",description:"Property on supplied items that contains its value.",description_zh:"包含其值的已提供项的属性。"},"last-icon":{default:"$last",value:"",type:"string",description:"Last icon.",description_zh:"最后一个图标。"},"last-page-label":{default:"$vuetify.dataFooter.lastPage",value:"",type:"string",description:"Label for last page.",description_zh:"最后一页的标签。"},loading:{default:"false",value:"",type:"string | boolean",description:"Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - primary, secondary, success, info, warning, error) or a Boolean which uses the component color (set by color prop - if it’s supported by the component) or the primary color.",description_zh:"显示线性进度条。可以是指定应用于进度条的颜色的 String（任何材质颜色或主题颜色 - 主要颜色、次要颜色、成功颜色、信息颜色、警告颜色、错误颜色）或布尔值，它使用组件颜色（由颜色属性设置 - 如果组件支持）或主要颜色。"},"loading-text":{default:"$vuetify.dataIterator.loadingText",value:"",type:"string",description:"Text shown when the data is loading.",description_zh:"加载数据时显示的文本。"},mobile:{default:"false",value:"",type:"boolean",description:"Determines the display mode of the component. If true, the component will be displayed in mobile mode. If false, the component will be displayed in desktop mode. If null, will be based on the current mobile-breakpoint",description_zh:"确定组件的显示模式。如果为 true，则组件将以移动模式显示。如果为 false，则组件将以桌面模式显示。如果为 null，则将基于当前移动断点"},"mobile-breakpoint":{default:"undefined",value:"",type:"number / xs / sm / md / lg / xl / xxl",description:"Overrides the display configuration default screen size that the component should be considered in mobile.",description_zh:"覆盖组件在移动设备中应考虑的显示配置默认屏幕大小。"},"v-model":{default:"[]",value:"",type:"unknown",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v 模型值。如果组件支持多 prop，则默认为空数组。"},"multi-sort":{default:"false",value:"",type:"boolean",description:"Allows sorting by multiple columns.",description_zh:"允许按多列排序。"},"must-sort":{default:"false",value:"",type:"boolean",description:"Forces sorting on the column(s).",description_zh:"强制对列进行排序。"},"next-icon":{default:"$next",value:"",type:"string",description:"Next icon.",description_zh:"下一个图标。"},"next-page-label":{default:"$vuetify.dataFooter.nextPage",value:"",type:"string",description:"Label for next page.",description_zh:"下一页的标签。"},"no-data-text":{default:"$vuetify.noDataText",value:"",type:"string",description:"Text shown when no items are provided to the component.",description_zh:"未向组件提供任何项目时显示的文本。"},page:{default:"1",value:"",type:"string | number",description:"The current displayed page number (1-indexed).",description_zh:"当前显示的页码（1-索引）。"},"page-text":{default:"$vuetify.dataFooter.pageText",value:"",type:"string",description:"Label for page number.",description_zh:"页码的标签。"},"prev-icon":{default:"$prev",value:"",type:"string",description:"Previous icon.",description_zh:"上一个图标。"},"prev-page-label":{default:"$vuetify.dataFooter.prevPage",value:"",type:"string",description:"Label for previous page.",description_zh:"上一页的标签。"},"return-object":{default:"false",value:"",type:"boolean",description:"Changes the selection behavior to return the object directly rather than the value specified with item-value.",description_zh:"更改选择行为以直接返回对象，而不是使用 item-value 指定的值。"},"row-props":{default:"undefined",value:"",type:"  | Record<string, any>  | ((      data: Pick<ItemKeySlot<any>, 'item' | 'index' | 'internalItem'>,    ) => Record<string, any>)",description:"An object of additional props to be passed to each <tr> in the table body. Also accepts a function that will be called for each row.",description_zh:"要传递<tr>给表主体中每个属性的附加属性的对象。还接受将为每行调用的函数。"},search:{default:"undefined",value:"",type:"string",description:"Text input used to filter items.",description_zh:"用于筛选项目的文本输入。"},"select-strategy":{default:"page",value:"",type:"page / single / all",description:"Defines the strategy of selecting items in the list. Possible values are: ‘single’ (only one item can be selected at a time), ‘page’ (‘Select all’ button will select only items on the current page), ‘all’ (‘Select all’ button will select all items in the list).",description_zh:"定义在列表中选择项的策略。可能的值为：“单个”（一次只能选择一个项目）、“page”（“全选”按钮将仅选择当前页面上的项目）、“all”（“全选”按钮将选择列表中的所有项目）。"},"show-current-page":{default:"false",value:"",type:"boolean",description:"Show current page number between prev/next icons.",description_zh:"在上一个/下一个图标之间显示当前页码。"},"show-expand":{default:"false",value:"",type:"boolean",description:"Shows the expand icon.",description_zh:"显示展开图标。"},"show-select":{default:"false",value:"",type:"boolean",description:"Shows the column with checkboxes for selecting items in the list.",description_zh:"显示带有用于选择列表中项目的复选框的列。"},"sort-asc-icon":{default:"$sortAsc",value:"",type:"any",description:"Icon used for ascending sort button.",description_zh:"用于升序排序按钮的图标。"},"sort-by":{default:"[]",value:"",type:"SortItem[]",description:"Array of column keys and sort orders that determines the sort order of the table.",description_zh:"列键和排序顺序的数组，用于确定表的排序顺序。"},"sort-desc-icon":{default:"$sortDesc",value:"",type:"any",description:"Icon used for descending sort button.",description_zh:"用于降序排序按钮的图标。"},sticky:{default:"false",value:"",type:"boolean",description:"Sticks the header to the top of the table.",description_zh:"将标题粘贴到表的顶部。"},tag:{default:"div",value:"",type:"string",description:"Specify a custom tag used on the root element.",description_zh:"指定用于根元素的自定义标记。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},"value-comparator":{default:"undefined",value:"",type:"(a: any, b: any) => boolean",description:"Apply a custom comparison algorithm to compare model-value and values contains in the items prop.",description_zh:"应用自定义比较算法来比较 model-value 和 items prop 中包含的值。"},width:{default:"undefined",value:"",type:"string | number",description:"Sets the width for the component.",description_zh:"设置元件的宽度。"}},link:"https://vuetifyjs.com/en/api/v-data-table-server/#links",link_zh:"https://vuetifyjs.com/en/api/v-data-table-server/#links",typeDetail:{},events:[{name:"update:expanded",description:"Emits when the expanded property of the options prop is updated.",description_zh:"在 options 属性的 expanded 属性更新时发出。",params:"[any]",value:""},{name:"update:groupBy",description:"Emits when the group-by property of the options property is updated.",description_zh:"在更新 options 属性的 group-by 属性时发出。",params:"[any]",value:""},{name:"update:itemsPerPage",description:"Emits when the items-per-page property of the options prop is updated.",description_zh:"在更新 options 属性的 items-per-page 属性时发出。",params:"[number]",value:""},{name:"update:modelValue",description:"Emits when the component’s model changes.",description_zh:"在组件的模型更改时发出。",params:"[unknown]",value:""},{name:"update:options",description:"Emits when one of the options properties is updated.",description_zh:"在其中一个选项属性更新时发出。",params:"[any]",value:""},{name:"update:page",description:"Emits when the page property of the options prop is updated.",description_zh:"在 options 属性更新时发出 options 属性。",params:"[number]",value:""},{name:"update:sortBy",description:"Emits when the sort-by property of the options prop is updated.",description_zh:"在更新选项属性的排序方式属性时发出。",params:"[any]",value:""}],methods:[],slots:[{name:"[`header.${string}`]",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  column: InternalDataTableHeader\n  selectAll: (value: boolean) => void\n  isSorted: (column: InternalDataTableHeader) => boolean\n  toggleSort: (column: InternalDataTableHeader) => void\n  sortBy: SortItem[]\n  someSelected: boolean\n  allSelected: boolean\n  getSortIcon: (\n    column: InternalDataTableHeader,\n  ) =>\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n}"},{name:"[`item.${string}`]",description:"Slot for custom rendering of a row cell.",description_zh:"用于自定义呈现行单元格的插槽。",params:"{\n  index: number\n  item: any\n  internalItem: DataTableItem\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n} & { value: any; column: InternalDataTableHeader }"},{name:"body",description:"Slot to replace the default rendering of the <tbody> element.",description_zh:"Slot 替换元素的默认渲染<tbody>。",params:"{\n  page: number\n  itemsPerPage: number\n  sortBy: SortItem[]\n  pageCount: number\n  toggleSort: (column: InternalDataTableHeader) => void\n  setItemsPerPage: (value: number) => void\n  someSelected: boolean\n  allSelected: boolean\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  select: (items: SelectableItem[], value: boolean) => void\n  selectAll: (value: boolean) => void\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isGroupOpen: (group: Group) => boolean\n  toggleGroup: (group: Group) => void\n  items: any[]\n  internalItems: DataTableItem[]\n  groupedItems: (DataTableItem | Group)[]\n  columns: InternalDataTableHeader[]\n  headers: InternalDataTableHeader[][]\n}"},{name:"body.append",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  page: number\n  itemsPerPage: number\n  sortBy: SortItem[]\n  pageCount: number\n  toggleSort: (column: InternalDataTableHeader) => void\n  setItemsPerPage: (value: number) => void\n  someSelected: boolean\n  allSelected: boolean\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  select: (items: SelectableItem[], value: boolean) => void\n  selectAll: (value: boolean) => void\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isGroupOpen: (group: Group) => boolean\n  toggleGroup: (group: Group) => void\n  items: any[]\n  internalItems: DataTableItem[]\n  groupedItems: (DataTableItem | Group)[]\n  columns: InternalDataTableHeader[]\n  headers: InternalDataTableHeader[][]\n}"},{name:"body.prepend",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  page: number\n  itemsPerPage: number\n  sortBy: SortItem[]\n  pageCount: number\n  toggleSort: (column: InternalDataTableHeader) => void\n  setItemsPerPage: (value: number) => void\n  someSelected: boolean\n  allSelected: boolean\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  select: (items: SelectableItem[], value: boolean) => void\n  selectAll: (value: boolean) => void\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isGroupOpen: (group: Group) => boolean\n  toggleGroup: (group: Group) => void\n  items: any[]\n  internalItems: DataTableItem[]\n  groupedItems: (DataTableItem | Group)[]\n  columns: InternalDataTableHeader[]\n  headers: InternalDataTableHeader[][]\n}"},{name:"bottom",description:"Slot to add content below the table.",description_zh:"Slot 在表格下方添加内容。",params:"{\n  page: number\n  itemsPerPage: number\n  sortBy: SortItem[]\n  pageCount: number\n  toggleSort: (column: InternalDataTableHeader) => void\n  setItemsPerPage: (value: number) => void\n  someSelected: boolean\n  allSelected: boolean\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  select: (items: SelectableItem[], value: boolean) => void\n  selectAll: (value: boolean) => void\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isGroupOpen: (group: Group) => boolean\n  toggleGroup: (group: Group) => void\n  items: any[]\n  internalItems: DataTableItem[]\n  groupedItems: (DataTableItem | Group)[]\n  columns: InternalDataTableHeader[]\n  headers: InternalDataTableHeader[][]\n}"},{name:"colgroup",description:"Slot to replace the default rendering of the <colgroup> element.",description_zh:"Slot 替换元素的默认渲染<colgroup>。",params:"{\n  page: number\n  itemsPerPage: number\n  sortBy: SortItem[]\n  pageCount: number\n  toggleSort: (column: InternalDataTableHeader) => void\n  setItemsPerPage: (value: number) => void\n  someSelected: boolean\n  allSelected: boolean\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  select: (items: SelectableItem[], value: boolean) => void\n  selectAll: (value: boolean) => void\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isGroupOpen: (group: Group) => boolean\n  toggleGroup: (group: Group) => void\n  items: any[]\n  internalItems: DataTableItem[]\n  groupedItems: (DataTableItem | Group)[]\n  columns: InternalDataTableHeader[]\n  headers: InternalDataTableHeader[][]\n}"},{name:"data-table-group",description:"Slot for custom rendering of a group.",description_zh:"用于自定义渲染组的插槽。",params:"{ item: Group; count: number; props: Record<string, unknown> }"},{name:"data-table-select",description:"Slot for custom rendering of a header cell with the select checkbox.",description_zh:"用于自定义渲染标题单元格的插槽，带有 select 复选框。",params:"{ props: Record<string, unknown> }"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{\n  page: number\n  itemsPerPage: number\n  sortBy: SortItem[]\n  pageCount: number\n  toggleSort: (column: InternalDataTableHeader) => void\n  setItemsPerPage: (value: number) => void\n  someSelected: boolean\n  allSelected: boolean\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  select: (items: SelectableItem[], value: boolean) => void\n  selectAll: (value: boolean) => void\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isGroupOpen: (group: Group) => boolean\n  toggleGroup: (group: Group) => void\n  items: any[]\n  internalItems: DataTableItem[]\n  groupedItems: (DataTableItem | Group)[]\n  columns: InternalDataTableHeader[]\n  headers: InternalDataTableHeader[][]\n}"},{name:"expanded-row",description:"Slot for custom rendering of an expanded row.",description_zh:"用于自定义渲染展开行的槽。",params:"{\n  index: number\n  item: any\n  internalItem: DataTableItem\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n} & { columns: InternalDataTableHeader[] }"},{name:"footer.prepend",description:"Adds content to the empty space in the footer.",description_zh:"将内容添加到页脚的空白处。",params:""},{name:"group-header",description:"Slot for custom rendering of a group header.",description_zh:"用于自定义呈现组标题的插槽。",params:"{\n  index: number\n  item: Group\n  columns: InternalDataTableHeader[]\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  toggleGroup: (group: Group) => void\n  isGroupOpen: (group: Group) => boolean\n}"},{name:"header.data-table-expand",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  column: InternalDataTableHeader\n  selectAll: (value: boolean) => void\n  isSorted: (column: InternalDataTableHeader) => boolean\n  toggleSort: (column: InternalDataTableHeader) => void\n  sortBy: SortItem[]\n  someSelected: boolean\n  allSelected: boolean\n  getSortIcon: (\n    column: InternalDataTableHeader,\n  ) =>\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n}"},{name:"header.data-table-select",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  column: InternalDataTableHeader\n  selectAll: (value: boolean) => void\n  isSorted: (column: InternalDataTableHeader) => boolean\n  toggleSort: (column: InternalDataTableHeader) => void\n  sortBy: SortItem[]\n  someSelected: boolean\n  allSelected: boolean\n  getSortIcon: (\n    column: InternalDataTableHeader,\n  ) =>\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n}"},{name:"headers",description:"Slot to replace the default rendering of the <thead> element.",description_zh:"Slot 替换元素的默认渲染<thead>。",params:"{\n  headers: InternalDataTableHeader[][]\n  columns: InternalDataTableHeader[]\n  sortBy: SortItem[]\n  someSelected: boolean\n  allSelected: boolean\n  toggleSort: (column: InternalDataTableHeader) => void\n  selectAll: (value: boolean) => void\n  getSortIcon: (\n    column: InternalDataTableHeader,\n  ) =>\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n  isSorted: (column: InternalDataTableHeader) => boolean\n}"},{name:"item",description:"Slot to replace the default rendering of a row.",description_zh:"Slot 替换行的默认渲染。",params:"{\n  index: number\n  item: any\n  internalItem: DataTableItem\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n} & { columns: InternalDataTableHeader[] } & { props: Record<string, any> }"},{name:"item.data-table-expand",description:"Slot to replace the default v-icon used when expanding rows.",description_zh:"用于替换展开行时使用的默认 v 图标的插槽。",params:"Omit<ItemKeySlot<any>, 'value'>"},{name:"item.data-table-select",description:"Slot to replace the default checkbox used when selecting rows.",description_zh:"Slot 替换选择行时使用的默认复选框。",params:"Omit<ItemKeySlot<any>, 'value'>"},{name:"loader",description:"Slot for custom loader (displayed when loading prop is equal to true).",description_zh:"自定义加载器的插槽（当加载 prop 等于 true 时显示）。",params:"{ color: string; isActive: boolean }"},{name:"loading",description:"Defines content for when loading is true and no items are provided.",description_zh:"定义 loading 为 true 且未提供任何项目时的内容。",params:""},{name:"no-data",description:"Defines content for when no items are provided.",description_zh:"定义未提供任何项目时的内容。",params:""},{name:"tbody",description:"Slot to replace the default rendering of the <tbody> element.",description_zh:"Slot 替换元素的默认渲染<tbody>。",params:"{\n  page: number\n  itemsPerPage: number\n  sortBy: SortItem[]\n  pageCount: number\n  toggleSort: (column: InternalDataTableHeader) => void\n  setItemsPerPage: (value: number) => void\n  someSelected: boolean\n  allSelected: boolean\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  select: (items: SelectableItem[], value: boolean) => void\n  selectAll: (value: boolean) => void\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isGroupOpen: (group: Group) => boolean\n  toggleGroup: (group: Group) => void\n  items: any[]\n  internalItems: DataTableItem[]\n  groupedItems: (DataTableItem | Group)[]\n  columns: InternalDataTableHeader[]\n  headers: InternalDataTableHeader[][]\n}"},{name:"tfoot",description:"Slot to replace the default rendering of the <tfoot> element.",description_zh:"Slot 替换元素的默认渲染<tfoot>。",params:"{\n  page: number\n  itemsPerPage: number\n  sortBy: SortItem[]\n  pageCount: number\n  toggleSort: (column: InternalDataTableHeader) => void\n  setItemsPerPage: (value: number) => void\n  someSelected: boolean\n  allSelected: boolean\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  select: (items: SelectableItem[], value: boolean) => void\n  selectAll: (value: boolean) => void\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isGroupOpen: (group: Group) => boolean\n  toggleGroup: (group: Group) => void\n  items: any[]\n  internalItems: DataTableItem[]\n  groupedItems: (DataTableItem | Group)[]\n  columns: InternalDataTableHeader[]\n  headers: InternalDataTableHeader[][]\n}"},{name:"thead",description:"Slot to replace the default rendering of the <thead> element.",description_zh:"Slot 替换元素的默认渲染<thead>。",params:"{\n  page: number\n  itemsPerPage: number\n  sortBy: SortItem[]\n  pageCount: number\n  toggleSort: (column: InternalDataTableHeader) => void\n  setItemsPerPage: (value: number) => void\n  someSelected: boolean\n  allSelected: boolean\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  select: (items: SelectableItem[], value: boolean) => void\n  selectAll: (value: boolean) => void\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isGroupOpen: (group: Group) => boolean\n  toggleGroup: (group: Group) => void\n  items: any[]\n  internalItems: DataTableItem[]\n  groupedItems: (DataTableItem | Group)[]\n  columns: InternalDataTableHeader[]\n  headers: InternalDataTableHeader[][]\n}"},{name:"top",description:"Slot to add content above the table.",description_zh:"用于在表格上方添加内容的插槽。",params:"{\n  page: number\n  itemsPerPage: number\n  sortBy: SortItem[]\n  pageCount: number\n  toggleSort: (column: InternalDataTableHeader) => void\n  setItemsPerPage: (value: number) => void\n  someSelected: boolean\n  allSelected: boolean\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  select: (items: SelectableItem[], value: boolean) => void\n  selectAll: (value: boolean) => void\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isGroupOpen: (group: Group) => boolean\n  toggleGroup: (group: Group) => void\n  items: any[]\n  internalItems: DataTableItem[]\n  groupedItems: (DataTableItem | Group)[]\n  columns: InternalDataTableHeader[]\n  headers: InternalDataTableHeader[][]\n}"}]},_={name:"VDataTableVirtual",props:{"cell-props":{default:"undefined",value:"",type:"  | Record<string, any>  | ((      data: Pick<        ItemKeySlot<any>,        'value' | 'item' | 'index' | 'internalItem' | 'column'      >,    ) => Record<string, any>)",description:"An object of additional props to be passed to each <td> in the table body. Also accepts a function that will be called for each cell. If the same prop is defined both here and in cellProps in a headers object, the value from the headers object will be used.",description_zh:"要传递<td>给表主体中每个属性的附加属性的对象。还接受将为每个单元格调用的函数。如果此处和 headers 对象的 cellProps 中都定义了相同的 prop，则将使用 headers 对象中的值。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},"custom-filter":{default:"undefined",value:"",type:"FilterFunction",description:"Function used to filter items, called for each filterable key on each item in the list. The first argument is the filterable value from the item, the second is the search term, and the third is the internal item object. The function should return true if the item should be included in the filtered list, or the index of the match in the value if it should be included with the result highlighted.",description_zh:"用于筛选项的函数，为列表中每个项上的每个可筛选键调用。第一个参数是项中的可筛选值，第二个参数是搜索词，第三个参数是内部项对象。如果项目应包含在筛选列表中，则该函数应返回 true，如果应在突出显示的结果中包含匹配项的索引，则该函数应返回 true。"},"custom-key-filter":{default:"undefined",value:"",type:"unknown",description:"Function used on specific keys within the item object. customFilter is skipped for columns with customKeyFilter specified.",description_zh:"用于 item 对象中特定键的函数。对于指定了 customKeyFilter 的列，将跳过 customFilter。"},"custom-key-sort":{default:"undefined",value:"",type:"unknown",description:"Function used on specific keys within the item object. customSort is skipped for columns with customKeySort specified.",description_zh:"用于 item 对象中特定键的函数。对于指定了 customKeySort 的列，将跳过 customSort。"},density:{default:"default",value:"",type:"default / comfortable / compact",description:"Adjusts the vertical height used by the component.",description_zh:"调整元件使用的垂直高度。"},"disable-sort":{default:"false",value:"",type:"boolean",description:"Toggles rendering of sort button.",description_zh:"切换排序按钮的渲染。"},expanded:{default:"[]",value:"",type:"string[]",description:"Whether the item is expanded or not.",description_zh:"项目是否展开。"},"expand-on-click":{default:"false",value:"",type:"boolean",description:"Expands item when the row is clicked.",description_zh:"单击行时展开项。"},"filter-keys":{default:"undefined",value:"",type:"string | string[]",description:"Array of specific keys to filter on the item.",description_zh:"要筛选项目的特定键的数组。"},"filter-mode":{default:"intersection",value:"",type:"every / some / union / intersection",description:"Controls how the results of customFilter and customKeyFilter are combined. All modes only apply customFilter to columns not specified in customKeyFilter.some: There is at least one match from either the custom filter or the custom key filter.every: All columns match either the custom filter or the custom key filter.union: There is at least one match from the custom filter, or all columns match the custom key filters.intersection: There is at least one match from the custom filter, and all columns match the custom key filters.",description_zh:"控制 customFilter 和 customKeyFilter 的结果组合方式。所有模式仅将 customFilter 应用于 customKeyFilter.some 中未指定的列：自定义筛选器或自定义键 filter.every 中至少有一个匹配项：所有列都与自定义筛选器或自定义键 filter.union 匹配：自定义筛选器中至少有一个匹配项，或者所有列都与自定义键 filters.intersection 匹配： 自定义筛选器中至少有一个匹配项，并且所有列都与自定义键筛选器匹配。"},"fixed-footer":{default:"false",value:"",type:"boolean",description:"Use the fixed-footer prop together with the height prop to fix the footer to the bottom of the table.",description_zh:"将固定页脚支撑与高度支撑一起使用，将页脚固定到桌子底部。"},"fixed-header":{default:"false",value:"",type:"boolean",description:"Use the fixed-header prop together with the height prop to fix the header to the top of the table.",description_zh:"将固定标题与高度支柱一起使用，将标题固定到桌子的顶部。"},"group-by":{default:"[]",value:"",type:"SortItem[]",description:"Defines the grouping of the table items.",description_zh:"定义表项的分组。"},"header-props":{default:"undefined",value:"",type:"unknown",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）"},headers:{default:"undefined",value:"",type:"{  readonly key?:    | 'data-table-group'    | 'data-table-select'    | 'data-table-expand'    | (string & {})    | undefined  readonly value?: SelectItemKey<Record<string, any>>  readonly title?: string | undefined  readonly fixed?: boolean | undefined  readonly align?: 'start' | 'end' | 'center' | undefined  readonly width?: string | number | undefined  readonly minWidth?: string | undefined  readonly maxWidth?: string | undefined  readonly nowrap?: boolean | undefined  readonly headerProps?: { readonly [x: string]: any } | undefined  readonly cellProps?:    | { readonly [x: string]: any }    | ((        data: Pick<          ItemKeySlot<any>,          'value' | 'item' | 'index' | 'internalItem'        >,      ) => Record<string, any>)    | undefined  readonly sortable?: boolean | undefined  readonly sort?: DataTableCompareFunction<any> | undefined  readonly sortRaw?: DataTableCompareFunction<any> | undefined  readonly filter?: FilterFunction | undefined  readonly mobile?: boolean | undefined  readonly children?:    | readonly {        readonly key?:          | 'data-table-group'          | 'data-table-select'          | 'data-table-expand'          | (string & {})          | undefined        readonly value?: SelectItemKey<Record<string, any>>        readonly title?: string | undefined        readonly fixed?: boolean | undefined        readonly align?: 'start' | 'end' | 'center' | undefined        readonly width?: string | number | undefined        readonly minWidth?: string | undefined        readonly maxWidth?: string | undefined        readonly nowrap?: boolean | undefined        readonly headerProps?: { readonly [x: string]: any } | undefined        readonly cellProps?:          | { readonly [x: string]: any }          | ((              data: Pick<                ItemKeySlot<any>,                'value' | 'item' | 'index' | 'internalItem'              >,            ) => Record<string, any>)          | undefined        readonly sortable?: boolean | undefined        readonly sort?: DataTableCompareFunction<any> | undefined        readonly sortRaw?: DataTableCompareFunction<any> | undefined        readonly filter?: FilterFunction | undefined        readonly mobile?: boolean | undefined        readonly children?: readonly any[] | undefined      }[]    | undefined}[]",description:"An array of objects that each describe a header column.",description_zh:"每个对象描述一个标题列的对象数组。"},height:{default:"undefined",value:"",type:"string | number",description:"Use the height prop to set the height of the table.",description_zh:"使用高度道具设置桌子的高度。"},"hide-default-body":{default:"false",value:"",type:"boolean",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）"},"hide-default-footer":{default:"false",value:"",type:"boolean",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）"},"hide-default-header":{default:"false",value:"",type:"boolean",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）"},"hide-no-data":{default:"false",value:"",type:"boolean",description:"Hides the menu when there are no options to show. Useful for preventing the menu from opening before results are fetched asynchronously. Also has the effect of opening the menu when the items array changes if not already open.",description_zh:"当没有要显示的选项时隐藏菜单。可用于防止在异步获取结果之前打开菜单。还具有在项目数组更改时打开菜单（如果尚未打开）的效果。"},hover:{default:"false",value:"",type:"boolean",description:"Will add a hover effect to a table’s row when the mouse is over it.",description_zh:"当鼠标悬停在表格的行上时，将向表格的行添加悬停效果。"},"item-height":{default:"null",value:"",type:"string | number",description:"Height in pixels of each item to display.",description_zh:"要显示的每个项目的高度（以像素为单位）。"},items:{default:"[]",value:"",type:"any[]",description:"An array of strings or objects used for automatically generating children components.",description_zh:"用于自动生成子组件的字符串或对象数组。"},"item-selectable":{default:"null",value:"",type:"SelectItemKey<any>",description:"Property on supplied items that indicates whether the item is selectable.",description_zh:"提供的项的属性，指示项是否可选。"},"item-value":{default:"id",value:"",type:"SelectItemKey<any>",description:"Property on supplied items that contains its value.",description_zh:"包含其值的已提供项的属性。"},loading:{default:"false",value:"",type:"string | boolean",description:"Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - primary, secondary, success, info, warning, error) or a Boolean which uses the component color (set by color prop - if it’s supported by the component) or the primary color.",description_zh:"显示线性进度条。可以是指定应用于进度条的颜色的 String（任何材质颜色或主题颜色 - 主要颜色、次要颜色、成功颜色、信息颜色、警告颜色、错误颜色）或布尔值，它使用组件颜色（由颜色属性设置 - 如果组件支持）或主要颜色。"},"loading-text":{default:"$vuetify.dataIterator.loadingText",value:"",type:"string",description:"Text shown when the data is loading.",description_zh:"加载数据时显示的文本。"},mobile:{default:"false",value:"",type:"boolean",description:"Determines the display mode of the component. If true, the component will be displayed in mobile mode. If false, the component will be displayed in desktop mode. If null, will be based on the current mobile-breakpoint",description_zh:"确定组件的显示模式。如果为 true，则组件将以移动模式显示。如果为 false，则组件将以桌面模式显示。如果为 null，则将基于当前移动断点"},"mobile-breakpoint":{default:"undefined",value:"",type:"number / xs / sm / md / lg / xl / xxl",description:"Overrides the display configuration default screen size that the component should be considered in mobile.",description_zh:"覆盖组件在移动设备中应考虑的显示配置默认屏幕大小。"},"v-model":{default:"[]",value:"",type:"unknown",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v 模型值。如果组件支持多 prop，则默认为空数组。"},"multi-sort":{default:"false",value:"",type:"boolean",description:"Allows sorting by multiple columns.",description_zh:"允许按多列排序。"},"must-sort":{default:"false",value:"",type:"boolean",description:"Forces sorting on the column(s).",description_zh:"强制对列进行排序。"},"no-data-text":{default:"$vuetify.noDataText",value:"",type:"string",description:"Text shown when no items are provided to the component.",description_zh:"未向组件提供任何项目时显示的文本。"},"no-filter":{default:"false",value:"",type:"boolean",description:"Disables all item filtering.",description_zh:"禁用所有项目筛选。"},"return-object":{default:"false",value:"",type:"boolean",description:"Changes the selection behavior to return the object directly rather than the value specified with item-value.",description_zh:"更改选择行为以直接返回对象，而不是使用 item-value 指定的值。"},"row-props":{default:"undefined",value:"",type:"  | Record<string, any>  | ((      data: Pick<ItemKeySlot<any>, 'item' | 'index' | 'internalItem'>,    ) => Record<string, any>)",description:"An object of additional props to be passed to each <tr> in the table body. Also accepts a function that will be called for each row.",description_zh:"要传递<tr>给表主体中每个属性的附加属性的对象。还接受将为每行调用的函数。"},search:{default:"undefined",value:"",type:"string",description:"Text input used to filter items.",description_zh:"用于筛选项目的文本输入。"},"select-strategy":{default:"page",value:"",type:"single / page / all",description:"Defines the strategy of selecting items in the list. Possible values are: ‘single’ (only one item can be selected at a time), ‘page’ (‘Select all’ button will select only items on the current page), ‘all’ (‘Select all’ button will select all items in the list).",description_zh:"定义在列表中选择项的策略。可能的值为：“单个”（一次只能选择一个项目）、“page”（“全选”按钮将仅选择当前页面上的项目）、“all”（“全选”按钮将选择列表中的所有项目）。"},"show-expand":{default:"false",value:"",type:"boolean",description:"Shows the expand icon.",description_zh:"显示展开图标。"},"show-select":{default:"false",value:"",type:"boolean",description:"Shows the column with checkboxes for selecting items in the list.",description_zh:"显示带有用于选择列表中项目的复选框的列。"},"sort-asc-icon":{default:"$sortAsc",value:"",type:"any",description:"Icon used for ascending sort button.",description_zh:"用于升序排序按钮的图标。"},"sort-by":{default:"[]",value:"",type:"SortItem[]",description:"Array of column keys and sort orders that determines the sort order of the table.",description_zh:"列键和排序顺序的数组，用于确定表的排序顺序。"},"sort-desc-icon":{default:"$sortDesc",value:"",type:"any",description:"Icon used for descending sort button.",description_zh:"用于降序排序按钮的图标。"},sticky:{default:"false",value:"",type:"boolean",description:"Sticks the header to the top of the table.",description_zh:"将标题粘贴到表的顶部。"},tag:{default:"div",value:"",type:"string",description:"Specify a custom tag used on the root element.",description_zh:"指定用于根元素的自定义标记。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},"value-comparator":{default:"undefined",value:"",type:"(a: any, b: any) => boolean",description:"Apply a custom comparison algorithm to compare model-value and values contains in the items prop.",description_zh:"应用自定义比较算法来比较 model-value 和 items prop 中包含的值。"},width:{default:"undefined",value:"",type:"string | number",description:"Sets the width for the component.",description_zh:"设置元件的宽度。"}},link:"https://vuetifyjs.com/en/api/v-data-table-virtual/#links",link_zh:"https://vuetifyjs.com/en/api/v-data-table-virtual/#links",typeDetail:{},events:[{name:"update:expanded",description:"Emits when the expanded property of the options prop is updated.",description_zh:"在 options 属性的 expanded 属性更新时发出。",params:"[any]",value:""},{name:"update:groupBy",description:"Emits when the group-by property of the options property is updated.",description_zh:"在更新 options 属性的 group-by 属性时发出。",params:"[any]",value:""},{name:"update:modelValue",description:"Emits when the component’s model changes.",description_zh:"在组件的模型更改时发出。",params:"[unknown]",value:""},{name:"update:options",description:"Emits when one of the options properties is updated.",description_zh:"在其中一个选项属性更新时发出。",params:"[any]",value:""},{name:"update:sortBy",description:"Emits when the sort-by property of the options prop is updated.",description_zh:"在更新选项属性的排序方式属性时发出。",params:"[any]",value:""}],methods:[],slots:[{name:"[`header.${string}`]",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  column: InternalDataTableHeader\n  selectAll: (value: boolean) => void\n  isSorted: (column: InternalDataTableHeader) => boolean\n  toggleSort: (column: InternalDataTableHeader) => void\n  sortBy: SortItem[]\n  someSelected: boolean\n  allSelected: boolean\n  getSortIcon: (\n    column: InternalDataTableHeader,\n  ) =>\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n}"},{name:"[`item.${string}`]",description:"Slot for custom rendering of a row cell.",description_zh:"用于自定义呈现行单元格的插槽。",params:"{\n  index: number\n  item: any\n  internalItem: DataTableItem\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n} & { value: any; column: InternalDataTableHeader }"},{name:"body.append",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  headers: InternalDataTableHeader[][]\n  items: any[]\n  sortBy: SortItem[]\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  toggleSort: (column: InternalDataTableHeader) => void\n  someSelected: boolean\n  allSelected: boolean\n  select: (items: SelectableItem[], value: boolean) => void\n  selectAll: (value: boolean) => void\n  isGroupOpen: (group: Group) => boolean\n  toggleGroup: (group: Group) => void\n  internalItems: DataTableItem[]\n  groupedItems: (DataTableItem | Group)[]\n  columns: InternalDataTableHeader[]\n}"},{name:"body.prepend",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  headers: InternalDataTableHeader[][]\n  items: any[]\n  sortBy: SortItem[]\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  toggleSort: (column: InternalDataTableHeader) => void\n  someSelected: boolean\n  allSelected: boolean\n  select: (items: SelectableItem[], value: boolean) => void\n  selectAll: (value: boolean) => void\n  isGroupOpen: (group: Group) => boolean\n  toggleGroup: (group: Group) => void\n  internalItems: DataTableItem[]\n  groupedItems: (DataTableItem | Group)[]\n  columns: InternalDataTableHeader[]\n}"},{name:"bottom",description:"Slot to add content below the table.",description_zh:"Slot 在表格下方添加内容。",params:"{\n  headers: InternalDataTableHeader[][]\n  items: any[]\n  sortBy: SortItem[]\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  toggleSort: (column: InternalDataTableHeader) => void\n  someSelected: boolean\n  allSelected: boolean\n  select: (items: SelectableItem[], value: boolean) => void\n  selectAll: (value: boolean) => void\n  isGroupOpen: (group: Group) => boolean\n  toggleGroup: (group: Group) => void\n  internalItems: DataTableItem[]\n  groupedItems: (DataTableItem | Group)[]\n  columns: InternalDataTableHeader[]\n}"},{name:"colgroup",description:"Slot to replace the default rendering of the <colgroup> element.",description_zh:"Slot 替换元素的默认渲染<colgroup>。",params:"{\n  headers: InternalDataTableHeader[][]\n  items: any[]\n  sortBy: SortItem[]\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  toggleSort: (column: InternalDataTableHeader) => void\n  someSelected: boolean\n  allSelected: boolean\n  select: (items: SelectableItem[], value: boolean) => void\n  selectAll: (value: boolean) => void\n  isGroupOpen: (group: Group) => boolean\n  toggleGroup: (group: Group) => void\n  internalItems: DataTableItem[]\n  groupedItems: (DataTableItem | Group)[]\n  columns: InternalDataTableHeader[]\n}"},{name:"data-table-group",description:"Slot for custom rendering of a group.",description_zh:"用于自定义渲染组的插槽。",params:"{ item: Group; count: number; props: Record<string, unknown> }"},{name:"data-table-select",description:"Slot for custom rendering of a header cell with the select checkbox.",description_zh:"用于自定义渲染标题单元格的插槽，带有 select 复选框。",params:"{ props: Record<string, unknown> }"},{name:"expanded-row",description:"Slot for custom rendering of an expanded row.",description_zh:"用于自定义渲染展开行的槽。",params:"{\n  index: number\n  item: any\n  internalItem: DataTableItem\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n} & { columns: InternalDataTableHeader[] }"},{name:"group-header",description:"Slot for custom rendering of a group header.",description_zh:"用于自定义呈现组标题的插槽。",params:"{\n  index: number\n  item: Group\n  columns: InternalDataTableHeader[]\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  toggleGroup: (group: Group) => void\n  isGroupOpen: (group: Group) => boolean\n}"},{name:"header.data-table-expand",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  column: InternalDataTableHeader\n  selectAll: (value: boolean) => void\n  isSorted: (column: InternalDataTableHeader) => boolean\n  toggleSort: (column: InternalDataTableHeader) => void\n  sortBy: SortItem[]\n  someSelected: boolean\n  allSelected: boolean\n  getSortIcon: (\n    column: InternalDataTableHeader,\n  ) =>\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n}"},{name:"header.data-table-select",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  column: InternalDataTableHeader\n  selectAll: (value: boolean) => void\n  isSorted: (column: InternalDataTableHeader) => boolean\n  toggleSort: (column: InternalDataTableHeader) => void\n  sortBy: SortItem[]\n  someSelected: boolean\n  allSelected: boolean\n  getSortIcon: (\n    column: InternalDataTableHeader,\n  ) =>\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n}"},{name:"headers",description:"Slot to replace the default rendering of the <thead> element.",description_zh:"Slot 替换元素的默认渲染<thead>。",params:"{\n  headers: InternalDataTableHeader[][]\n  columns: InternalDataTableHeader[]\n  sortBy: SortItem[]\n  someSelected: boolean\n  allSelected: boolean\n  toggleSort: (column: InternalDataTableHeader) => void\n  selectAll: (value: boolean) => void\n  getSortIcon: (\n    column: InternalDataTableHeader,\n  ) =>\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n  isSorted: (column: InternalDataTableHeader) => boolean\n}"},{name:"item",description:"Slot to replace the default rendering of a row.",description_zh:"Slot 替换行的默认渲染。",params:"{\n  index: number\n  item: any\n  internalItem: DataTableItem\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n} & { columns: InternalDataTableHeader[] } & { props: Record<string, any> } & {\n  itemRef: TemplateRef\n}"},{name:"item.data-table-expand",description:"Slot to replace the default v-icon used when expanding rows.",description_zh:"用于替换展开行时使用的默认 v 图标的插槽。",params:"Omit<ItemKeySlot<any>, 'value'>"},{name:"item.data-table-select",description:"Slot to replace the default checkbox used when selecting rows.",description_zh:"Slot 替换选择行时使用的默认复选框。",params:"Omit<ItemKeySlot<any>, 'value'>"},{name:"loader",description:"Slot for custom loader (displayed when loading prop is equal to true).",description_zh:"自定义加载器的插槽（当加载 prop 等于 true 时显示）。",params:"{ color: string; isActive: boolean }"},{name:"loading",description:"Defines content for when loading is true and no items are provided.",description_zh:"定义 loading 为 true 且未提供任何项目时的内容。",params:""},{name:"no-data",description:"Defines content for when no items are provided.",description_zh:"定义未提供任何项目时的内容。",params:""},{name:"top",description:"Slot to add content above the table",description_zh:"用于在表格上方添加内容的插槽",params:"{\n  headers: InternalDataTableHeader[][]\n  items: any[]\n  sortBy: SortItem[]\n  isExpanded: (item: DataTableItem) => boolean\n  toggleExpand: (item: DataTableItem) => void\n  isSelected: (\n    items: { value: any; selectable: boolean } | SelectableItem[],\n  ) => boolean\n  toggleSelect: (item: { value: any; selectable: boolean }) => void\n  toggleSort: (column: InternalDataTableHeader) => void\n  someSelected: boolean\n  allSelected: boolean\n  select: (items: SelectableItem[], value: boolean) => void\n  selectAll: (value: boolean) => void\n  isGroupOpen: (group: Group) => boolean\n  toggleGroup: (group: Group) => void\n  internalItems: DataTableItem[]\n  groupedItems: (DataTableItem | Group)[]\n  columns: InternalDataTableHeader[]\n}"}]},w={name:"VDateInput",props:{active:{default:"false",value:"",type:"boolean",version:"",description:"Controls the active state of the item. This is typically used to highlight the component.",description_zh:"控制项的活动状态。这通常用于突出显示组件。",required:!1},"allowed-dates":{default:"undefined",value:"",type:"unknown[] | ((date: unknown) => boolean)",version:"",description:"Restricts which dates can be selected.",description_zh:"限制可以选择的日期。",required:!1},"append-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Creates a v-icon component after default content in the append slot.",description_zh:"在附加插槽中的默认内容之后创建一个 v 图标组件。",required:!1},"append-inner-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Creates a v-icon component in the append-inner slot.",description_zh:"在 append-inner 插槽中创建 v-icon 组件。",required:!1},autofocus:{default:"false",value:"",type:"boolean",version:"",description:"Enables autofocus.",description_zh:"启用自动对焦。",required:!1},"base-color":{default:"undefined",value:"",type:"string",version:"",description:"Sets the color of the input when it is not focused.",description_zh:"设置输入未聚焦时的颜色。",required:!1},"bg-color":{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control’s background. Used on components that also support the color prop. - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件的背景。用于也支持 color 属性的组件。- 支持实用工具颜色（例如 Success 或 Purple）或 CSS 颜色（#033 或 RGBA（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},border:{default:"false",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be xs, sm, md, lg, xl.",description_zh:"指定应用于组件的 border-radius。这可以是 xs、sm、md、lg、xl。",required:!1},"cancel-text":{default:"'$vuetify.confirmEdit.cancel'",value:"",type:"string",version:"",description:"Text for the cancel button",description_zh:"取消按钮的文本",required:!1},"center-affix":{default:"undefined",value:"",type:"boolean",version:"",description:"Vertically align appendInner, prependInner, clearIcon and label in the center.",description_zh:"将 appendInner、prependInner、clearIcon 和 label 垂直对齐在中心。",required:!1},clearable:{default:"false",value:"",type:"boolean",version:"",description:"Allows for the component to be cleared.",description_zh:"允许清除组件。",required:!1},"clear-icon":{default:"'$clear'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"The icon used when the clearable prop is set to true.",description_zh:"当 clearable prop 设置为 true 时使用的图标。",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},counter:{default:"false",value:"",type:"string | number | boolean",version:"",description:"Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation.",description_zh:"为 input length 创建 counter;如果未指定数字，则默认为 25。不应用任何验证。",required:!1},"counter-value":{default:"undefined",value:"",type:"number | ((value: any) => number)",version:"",description:"Function returns the counter display text.",description_zh:"function 返回计数器显示文本。",required:!1},density:{default:"'default'",value:"",type:"'default' | 'comfortable' | 'compact'",version:"",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。",required:!1},direction:{default:"'horizontal'",value:"",type:"'horizontal' | 'vertical'",version:"",description:"Changes the direction of the input.",description_zh:"更改输入的方向。",required:!1},dirty:{default:"false",value:"",type:"boolean",version:"",description:"Manually apply the dirty state styling.",description_zh:"手动应用 dirty state 样式。",required:!1},disabled:{default:"false",value:"",type:"boolean",version:"",description:"Removes the ability to click or target the input.",description_zh:"删除单击或定位输入的功能。",required:!1},"display-value":{default:"undefined",value:"",type:"unknown",version:"",description:"The value that determines the month to show. This is different from modelValue, which determines the selected value.",description_zh:"确定要显示的月份的值。这与 modelValue 不同，modelValue 确定所选值。",required:!1},elevation:{default:"undefined",value:"",type:"string | number",version:"",description:"Designates an elevation applied to the component between 0 and 24. You can find more information on the elevation page.",description_zh:"指定应用于组件的 0 到 24 之间的高程。您可以在海拔页面上找到更多信息。",required:!1},error:{default:"false",value:"",type:"boolean",version:"",description:"Puts the input in a manual error state.",description_zh:"将输入置于手动错误状态。",required:!1},"error-messages":{default:"[]",value:"",type:"string | string[]",version:"",description:"Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the rules prop. This field will not trigger validation.",description_zh:"将输入置于错误状态并传递自定义错误消息。将与 rules prop 发生的任何验证相结合。此字段不会触发验证。",required:!1},"first-day-of-week":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the first day of the week, starting with 0 for Sunday.",description_zh:"设置一周的第一天，从 0 开始表示星期日。",required:!1},flat:{default:"false",value:"",type:"boolean",version:"",description:"Removes box shadow when using a variant with elevation.",description_zh:"使用具有高程的变量时删除框阴影。",required:!1},focused:{default:"false",value:"",type:"boolean",version:"",description:"Forces a focused state styling on the component.",description_zh:"强制对组件进行 focused state 样式设置。",required:!1},header:{default:"'$vuetify.datePicker.header'",value:"",type:"string",version:"",description:"Text shown when no display-date is set.",description_zh:"未设置显示日期时显示的文本。",required:!1},height:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the height of the input.",description_zh:"设置输入的高度。",required:!1},"hide-actions":{default:"false",value:"",type:"boolean",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},"hide-details":{default:"false",value:"",type:"boolean | 'auto'",version:"",description:"Hides hint and validation errors. When set to auto messages will be rendered only if there’s a message (hint, error message, counter value etc) to display.",description_zh:"隐藏提示和验证错误。当设置为 auto 时，仅当有消息 （提示、错误消息、计数器值等） 要显示时，才会呈现消息。",required:!1},"hide-header":{default:"true",value:"",type:"boolean",version:"",description:"Hide the picker header.",description_zh:"隐藏选取器标题。",required:!1},"hide-spin-buttons":{default:"false",value:"",type:"boolean",version:"",description:"Hides spin buttons on the input when type is set to number.",description_zh:"当 type 设置为 number 时，隐藏输入上的旋转按钮。",required:!1},"hide-weekdays":{default:"false",value:"",type:"boolean",version:"",description:"Hide the days of the week letters.",description_zh:"隐藏星期几字母。",required:!1},hint:{default:"undefined",value:"",type:"string",version:"",description:"Displays hint text below the input when focused. Force this always open with the persistent-hint property.",description_zh:"聚焦时，在输入下方显示提示文本。使用 persistent-hint 属性强制 this always 打开。",required:!1},id:{default:"undefined",value:"",type:"string",version:"",description:"Sets the DOM id on the component.",description_zh:"设置组件上的 DOM ID。",required:!1},label:{default:"undefined",value:"",type:"string",version:"",description:"Sets the text of the v-label or v-field-label component.",description_zh:"设置 v-label 或 v-field-label 组件的文本。",required:!1},landscape:{default:"false",value:"",type:"boolean",version:"",description:"Puts the picker into landscape mode.",description_zh:"将选取器置于横向模式。",required:!1},loading:{default:"false",value:"",type:"string | boolean",version:"",description:"Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - primary, secondary, success, info, warning, error) or a Boolean which uses the component color (set by color prop - if it’s supported by the component) or the primary color.",description_zh:"显示线性进度条。可以是指定应用于进度条的颜色的 String（任何材料颜色或主题颜色 - primary、secondary、success、info、warning、error），也可以是使用组件颜色（由 color 属性设置 - 如果组件支持）或主要颜色的 Boolean。",required:!1},location:{default:"undefined",value:"",type:"Anchor",version:"",description:"Specifies the component’s location. Can combine by using a space separated string.",description_zh:"指定组件的位置。可以使用空格分隔的字符串进行组合。",required:!1},max:{default:"undefined",value:"",type:"unknown",version:"",description:"Maximum allowed date/month (ISO 8601 format).",description_zh:"允许的最大日期/月（ISO 8601 格式）。",required:!1},"max-errors":{default:"1",value:"",type:"string | number",version:"",description:"Control the maximum number of shown errors from validation.",description_zh:"控制验证时显示的错误的最大数量。",required:!1},"max-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum height for the component.",description_zh:"设置组件的最大高度。",required:!1},"max-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。",required:!1},messages:{default:"[]",value:"",type:"string | string[]",version:"",description:"Displays a list of messages or a single message if using a string.",description_zh:"显示消息列表，如果使用字符串，则显示单个消息。",required:!1},min:{default:"undefined",value:"",type:"unknown",version:"",description:"Minimum allowed date/month (ISO 8601 format).",description_zh:"允许的最小日期/月份 （ISO 8601 格式）。",required:!1},"min-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum height for the component.",description_zh:"设置组件的最小高度。",required:!1},"min-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum width for the component.",description_zh:"设置组件的最小宽度。",required:!1},"mode-icon":{default:"'$subgroup'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Icon displayed next to the current month and year, toggles year selection when clicked.",description_zh:"图标显示在当前月份和年份旁边，单击时切换年份选择。",required:!1},"v-model":{default:"undefined",value:"",type:"any",version:"",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v-model 值。如果 component 支持 multiple prop，则默认为空数组。",required:!1},month:{default:"undefined",value:"",type:"string | number",version:"",description:"The current month number to show",description_zh:"要显示的当前月份数",required:!1},multiple:{default:"false",value:"",type:"number | boolean | (string & {}) | 'range'",version:"",description:"Allow the selection of multiple dates. The range value selects all dates between two selections.",description_zh:"允许选择多个日期。范围值选择两个选择之间的所有日期。",required:!1},name:{default:"undefined",value:"",type:"string",version:"",description:"Sets the component’s name attribute.",description_zh:"设置组件的 name 属性。",required:!1},"next-icon":{default:"'$next'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Sets the icon for next month/year button.",description_zh:"设置下个月/年度的图标按钮。",required:!1},"ok-text":{default:"'$vuetify.confirmEdit.ok'",value:"",type:"string",version:"",description:"Text for the ok button",description_zh:"确定按钮的文本",required:!1},"persistent-clear":{default:"false",value:"",type:"boolean",version:"",description:"Always show the clearable icon when the input is dirty (By default it only shows on hover).",description_zh:"当输入脏时，始终显示可清除图标（默认情况下，它仅在悬停时显示）。",required:!1},"persistent-counter":{default:"false",value:"",type:"boolean",version:"",description:"Forces counter to always be visible.",description_zh:"强制计数器始终可见。",required:!1},"persistent-hint":{default:"false",value:"",type:"boolean",version:"",description:"Forces hint to always be visible.",description_zh:"强制提示始终可见。",required:!1},"persistent-placeholder":{default:"false",value:"",type:"boolean",version:"",description:"Forces placeholder to always be visible.",description_zh:"强制占位符始终可见。",required:!1},placeholder:{default:"'mm/dd/yyyy'",value:"",type:"string",version:"",description:"Sets the input’s placeholder text.",description_zh:"设置输入的占位符文本。",required:!1},position:{default:"undefined",value:"",type:"'static' | 'relative' | 'fixed' | 'absolute' | 'sticky'",version:"",description:"Sets the position for the component.",description_zh:"设置零部件的位置。",required:!1},prefix:{default:"undefined",value:"",type:"string",version:"",description:"Displays prefix text.",description_zh:"显示前缀文本。",required:!1},"prepend-icon":{default:"'$calendar'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Prepends an icon to the outnside the component’s input, uses the same syntax as v-icon.",description_zh:"在组件输入的外部预置一个图标，使用与 v-icon 相同的语法。",required:!1},"prepend-inner-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Creates a v-icon component in the prepend-inner slot.",description_zh:"在 prepend-inner 插槽中创建一个 v-icon 组件。",required:!1},"prev-icon":{default:"'$prev'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Sets the icon for previous month/year button.",description_zh:"设置上个月/年份的图标按钮。",required:!1},readonly:{default:"null",value:"",type:"boolean",version:"",description:"Makes the picker readonly (doesn’t allow to select new date).",description_zh:"将选取器设置为只读（不允许选择新日期）。",required:!1},reverse:{default:"false",value:"",type:"boolean",version:"",description:"Reverses the orientation.",description_zh:"反转方向。",required:!1},"reverse-transition":{default:"'picker-reverse-transition'",value:"",type:"string",version:"",description:"The transition used when changing months into the past",description_zh:"将月份更改为过去时使用的过渡",required:!1},role:{default:"undefined",value:"",type:"string",version:"",description:"The role attribute applied to the input.",description_zh:"应用于输入的 role 属性。",required:!1},rounded:{default:"undefined",value:"",type:"string | number | boolean",version:"",description:"Adds a border radius to the input.",description_zh:"向输入添加边框半径。",required:!1},rules:{default:"[]",value:"",type:"ValidationRule[]",version:"",description:"Accepts a mixed array of types function, boolean and string. Functions pass an input value as an argument and must return either true / false or a string containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) false or is a string.",description_zh:"接受 function、boolean 和 string 类型的混合数组。函数将输入值作为参数传递，并且必须返回 true / false 或包含错误消息的字符串。如果函数返回 （或数组中的任何值包含） false 或为字符串，则输入字段将进入错误状态。",required:!1},"show-adjacent-months":{default:"false",value:"",type:"boolean",version:"",description:"Toggles visibility of days from previous and next months.",description_zh:"切换上个月和下个月的日期的可见性。",required:!1},"show-week":{default:"false",value:"",type:"boolean",version:"",description:"Toggles visibility of the week numbers in the body of the calendar.",description_zh:"切换日历正文中周数的可见性。",required:!1},"single-line":{default:"false",value:"",type:"boolean",version:"",description:"Label does not move on focus/dirty.",description_zh:"标签在聚焦/脏污时不移动。",required:!1},suffix:{default:"undefined",value:"",type:"string",version:"",description:"Displays suffix text.",description_zh:"显示后缀文本。",required:!1},tag:{default:"'div'",value:"",type:"string",version:"",description:"Specify a custom tag used on the root element.",description_zh:"指定根元素上使用的自定义标记。",required:!1},text:{default:"undefined",value:"",type:"string",version:"",description:"Specify content text for the component.",description_zh:"指定组件的内容文本。",required:!1},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},tile:{default:"false",value:"",type:"boolean",version:"",description:"Removes any applied border-radius from the component.",description_zh:"从组件中删除任何应用的 border-radius。",required:!1},title:{default:"'$vuetify.datePicker.title'",value:"",type:"string",version:"",description:"Specify a title text for the component.",description_zh:"指定组件的标题文本。",required:!1},transition:{default:"'picker-transition'",value:"",type:"string",version:"",description:"The transition used when changing months into the future",description_zh:"将未来月份更改为未来月份时使用的过渡",required:!1},type:{default:"'text'",value:"",type:"string",version:"",description:"Determines the type of the picker - date for date picker, month for month picker.",description_zh:"确定选取器的类型 - 日期选取器对应日期，月份对应月份选取器。",required:!1},"validate-on":{default:"undefined",value:"",type:"  | 'blur'  | 'input'  | 'submit'  | 'invalid-input'  | 'blur lazy'  | 'input lazy'  | 'submit lazy'  | 'invalid-input lazy'  | 'blur eager'  | 'input eager'  | 'submit eager'  | 'invalid-input eager'  | 'lazy blur'  | 'lazy input'  | 'lazy submit'  | 'lazy invalid-input'  | 'eager blur'  | 'eager input'  | 'eager submit'  | 'eager invalid-input'  | 'lazy'  | 'eager'",version:"",description:"Change what type of event triggers validation to run.",description_zh:"更改触发验证的事件类型以运行。",required:!1},"validation-value":{default:"undefined",value:"",type:"any",version:"",description:"The value used when applying validation rules.",description_zh:"应用验证规则时使用的值。",required:!1},variant:{default:"'filled'",value:"",type:"  | 'underlined'  | 'outlined'  | 'filled'  | 'solo'  | 'solo-inverted'  | 'solo-filled'  | 'plain'",version:"",description:"Applies a distinct style to the component.",description_zh:"将不同的样式应用于组件。",required:!1},"view-mode":{default:"'month'",value:"",type:"'month' | 'months' | 'year'",version:"",description:"Determines which picker in the date or month picker is being displayed. Allowed values: 'month', 'months', 'year'.",description_zh:"确定显示日期或月份选取器中的哪个选取器。允许的值：'month'、'months'、'year'。",required:!1},weekdays:{default:"[0, 1, 2, 3, 4, 5, 6]",value:"",type:"number[]",version:"",description:"An array of weekdays to display.",description_zh:"要显示的工作日数组。",required:!1},"weeks-in-month":{default:"'dynamic'",value:"",type:"'dynamic' | 'static'",version:"",description:"A dynamic number of weeks in a month will grow and shrink depending on how many days are in the month. A static number always shows 7 weeks.",description_zh:"一个月中的动态周数将根据该月的天数而增加和减少。静态数字始终显示 7 周。",required:!1},width:{default:"undefined",value:"",type:"string | number",version:"",description:"Width of the picker.",description_zh:"选取器的宽度。",required:!1},":year":{default:"undefined",value:"",type:"number",version:"",description:"The current year number to show",description_zh:"要显示的当前年份编号",required:!1}},link:"https://vuetifyjs.com/en/api/v-date-input/",link_zh:"https://vuetifyjs.com/en/api/v-date-input/",typeDetail:{},events:[{name:"click:append",description:"Emitted when append icon is clicked.",description_zh:"单击附加图标时发出。",params:"[MouseEvent]",value:""},{name:"click:appendInner",description:"Emitted when appended inner icon is clicked.",description_zh:"单击附加的内部图标时发出。",params:"[MouseEvent]",value:""},{name:"click:clear",description:"Emitted when clearable icon clicked.",description_zh:"单击可清除图标时发出。",params:"[MouseEvent]",value:""},{name:"click:prepend",description:"Emitted when prepended icon is clicked.",description_zh:"单击前置图标时发出。",params:"[MouseEvent]",value:""},{name:"click:prependInner",description:"Emitted when prepended inner icon is clicked.",description_zh:"单击前置的内部图标时发出。",params:"[MouseEvent]",value:""},{name:"update:focused",description:"Emitted when the input is focused or blurred",description_zh:"当输入聚焦或模糊时发出",params:"[boolean]",value:""},{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件的模型更改时发出的事件。",params:"[string]",value:""}],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:""}],exposed:[]},T={name:"VDatePicker",props:{active:{default:"undefined",value:"",type:"string | string[]",description:"Controls the active state of the item. This is typically used to highlight the component.",description_zh:"控制项的活动状态。这通常用于突出显示组件。"},"allowed-dates":{default:"undefined",value:"",type:"unknown[] | ((date: unknown) => boolean)",description:"Restricts which dates can be selected.",description_zh:"限制可以选择的日期。"},"bg-color":{default:"undefined",value:"",type:"string",description:"Applies specified color to the control’s background. Used on components that also support the color prop. - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件的背景。用于还支持颜色道具的组件。- 支持实用程序颜色（例如 success 或紫色）或 CSS 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},border:{default:"false",value:"",type:"string | number | boolean",description:"Designates the border-radius applied to the component. This can be xs, sm, md, lg, xl.",description_zh:"指定应用于组件的边框半径。这可以是 xs、sm、md、lg、xl。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},disabled:{default:"false",value:"",type:"boolean",description:"Removes the ability to click or target the component.",description_zh:"删除了单击组件或将组件定位的功能。"},"display-value":{default:"undefined",value:"",type:"unknown",description:"The value that determines the month to show. This is different from modelValue, which determines the selected value.",description_zh:"确定要显示的月份的值。这与 modelValue 不同，modelValue 确定所选值。"},elevation:{default:"undefined",value:"",type:"string | number",description:"Designates an elevation applied to the component between 0 and 24. You can find more information on the elevation page.",description_zh:"指定应用于组件的高程介于 0 和 24 之间。您可以在高程页面上找到更多信息。"},header:{default:"$vuetify.datePicker.header",value:"",type:"string",description:"Text shown when no display-date is set.",description_zh:"未设置显示日期时显示的文本。"},height:{default:"undefined",value:"",type:"string | number",description:"Sets the height for the component.",description_zh:"设置组件的高度。"},"hide-header":{default:"false",value:"",type:"boolean",description:"Hide the picker header.",description_zh:"隐藏选取器标头。"},"hide-weekdays":{default:"false",value:"",type:"boolean",description:"Hide the days of the week letters.",description_zh:"隐藏星期几字母。"},landscape:{default:"false",value:"",type:"boolean",description:"Puts the picker into landscape mode.",description_zh:"将选取器置于横向模式。"},location:{default:"undefined",value:"",type:"Anchor",description:"Specifies the component’s location. Can combine by using a space separated string.",description_zh:"指定组件的位置。可以使用空格分隔的字符串进行组合。"},max:{default:"undefined",value:"",type:"unknown",description:"Maximum allowed date/month (ISO 8601 format).",description_zh:"允许的最大日期/月份（ISO 8601 格式）。"},"max-height":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum height for the component.",description_zh:"设置元件的最大高度。"},"max-width":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。"},min:{default:"undefined",value:"",type:"unknown",description:"Minimum allowed date/month (ISO 8601 format).",description_zh:"允许的最小日期/月份（ISO 8601 格式）。"},"min-height":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum height for the component.",description_zh:"设置元件的最小高度。"},"min-width":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum width for the component.",description_zh:"设置组件的最小宽度。"},"mode-icon":{default:"$subgroup",value:"",type:"string",description:"Icon displayed next to the current month and year, toggles year selection when clicked.",description_zh:"图标显示在当前月份和年份旁边，单击时切换年份选择。"},"v-model":{default:"undefined",value:"",type:"unknown",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v 模型值。如果组件支持多 prop，则默认为空数组。"},month:{default:"undefined",value:"",type:"string | number",description:"The current month number to show",description_zh:"要显示的当前月份编号"},multiple:{default:"false",value:"",type:"number | boolean | (string & {}) | 'range'",description:"Allow the selection of multiple dates. The range value selects all dates between two selections.",description_zh:"允许选择多个日期。范围值选择两个选择之间的所有日期。"},"next-icon":{default:"$next",value:"",type:"string",description:"Sets the icon for next month/year button.",description_zh:"设置下个月/下一年按钮的图标。"},position:{default:"undefined",value:"",type:"static / relative / fixed / absolute / sticky",description:"Sets the position for the component.",description_zh:"设置组件的位置。"},"prev-icon":{default:"$prev",value:"",type:"string",description:"Sets the icon for previous month/year button.",description_zh:"设置上月/上年按钮的图标。"},"reverse-transition":{default:"picker-reverse-transition",value:"",type:"string",description:"The transition used when changing months into the past",description_zh:"将月份更改为过去时使用的过渡"},rounded:{default:"undefined",value:"",type:"string | number | boolean",description:"Designates the border-radius applied to the component. This can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. Find more information on available border radius classes on the Border Radius page.",description_zh:"指定应用于组件的边框半径。这可以是 0、xs、sm、true、lg、xl、pill、circle 和 shaped。有关可用边框半径类的详细信息，请访问边框半径页面。"},"show-adjacent-months":{default:"false",value:"",type:"boolean",description:"Toggles visibility of days from previous and next months.",description_zh:"切换上个月和下个月的天数可见性。"},"show-week":{default:"false",value:"",type:"boolean",description:"Toggles visibility of the week numbers in the body of the calendar.",description_zh:"在日历正文中切换周数的可见性。"},tag:{default:"div",value:"",type:"string",description:"Specify a custom tag used on the root element.",description_zh:"指定用于根元素的自定义标记。"},text:{default:"undefined",value:"",type:"string",description:"Specify content text for the component.",description_zh:"指定组件的内容文本。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},tile:{default:"false",value:"",type:"boolean",description:"Removes any applied border-radius from the component.",description_zh:"从元件中移除任何应用的边框半径。"},title:{default:"$vuetify.datePicker.title",value:"",type:"string",description:"Specify a title text for the component.",description_zh:"指定组件的标题文本。"},transition:{default:"picker-transition",value:"",type:"string",description:"The transition used when changing months into the future",description_zh:"将月份更改为未来月份时使用的过渡"},"view-mode":{default:"month",value:"",type:"month / months / year",description:"Determines which picker in the date or month picker is being displayed. Allowed values: 'month', 'months', 'year'.",description_zh:"确定在日期或月份选取器中显示哪个选取器。允许的值：'month'、'months'、'year'。"},weekdays:{default:"[0, 1, 2, 3, 4, 5, 6]",value:"",type:"number[]",description:"An array of weekdays to display.",description_zh:"要显示的工作日数组。"},"weeks-in-month":{default:"static",value:"",type:"dynamic / static",description:"A dynamic number of weeks in a month will grow and shrink depending on how many days are in the month. A static number always shows 7 weeks.",description_zh:"一个月中的动态周数将根据当月的天数而增长和减少。静态数字始终显示 7 周。"},width:{default:"undefined",value:"",type:"string | number",description:"Width of the picker.",description_zh:"选取器的宽度。"},":year":{default:"undefined",value:"",type:"number",description:"The current year number to show",description_zh:"要显示的当前年份编号"}},link:"https://vuetifyjs.com/en/api/v-date-picker/#links",link_zh:"https://vuetifyjs.com/en/api/v-date-picker/#links",typeDetail:{},events:[{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件模型更改时发出的事件。",params:"[unknown]",value:""},{name:"update:month",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"[any]",value:""},{name:"update:viewMode",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"[any]",value:""},{name:"update:year",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"[any]",value:""}],methods:[],slots:[{name:"actions",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:""},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:""},{name:"header",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{ header: string; transition: string }"},{name:"title",description:"Slot for the component’s title content.",description_zh:"组件标题内容的插槽。",params:""}]},N={name:"VDatePickerControls",props:{active:{default:"undefined",value:"",type:"string | string[]",description:"Controls the active state of the item. This is typically used to highlight the component.",description_zh:"控制项的活动状态。这通常用于突出显示组件。"},disabled:{default:"false",value:"",type:"string | boolean | string[]",description:"Removes the ability to click or target the component.",description_zh:"删除了单击组件或将组件定位的功能。"},"mode-icon":{default:"$subgroup",value:"",type:"string",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）"},"next-icon":{default:"$next",value:"",type:"string",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）"},"prev-icon":{default:"$prev",value:"",type:"string",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）"},text:{default:"undefined",value:"",type:"string",description:"Specify content text for the component.",description_zh:"指定组件的内容文本。"},"view-mode":{default:"month",value:"",type:"month / months / year",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）"}},link:"https://vuetifyjs.com/en/api/v-date-picker-controls/#props",link_zh:"https://vuetifyjs.com/en/api/v-date-picker-controls/#props",typeDetail:{},events:[{name:"click:month",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"[]",value:""},{name:"click:next",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"[]",value:""},{name:"click:prev",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"[]",value:""},{name:"click:text",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"[]",value:""},{name:"click:year",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"[]",value:""}],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:""}]},C={name:"VDatePickerHeader",props:{"append-icon":{default:"undefined",value:"",type:"string",description:"Creates a v-icon component after default content in the append slot.",description_zh:"在追加槽中的默认内容之后创建一个 v-icon 组件。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},header:{default:"undefined",value:"",type:"string",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"},transition:{default:"undefined",value:"",type:"string",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"}},link:"https://vuetifyjs.com/zh-Hans/api/v-date-picker-header/#props",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-date-picker-header/#props",typeDetail:{},events:[{name:"click",description:"Event that is emitted when the component is clicked.",description_zh:"单击组件时发出的事件。",params:"[]",value:""},{name:"click:append",description:"Emitted when appended icon is clicked.",description_zh:"单击附加图标时发出。",params:"[]",value:""}],methods:[],slots:[{name:"append",description:"Adds an item inside the input and after input content.",description_zh:"在输入内容内部和之后添加一个项目。"},{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"},{name:"prepend",description:"Adds an item outside the input and before input content.",description_zh:"在输入内容之外和输入内容之前添加一个项目。"}]},D={name:"VDatePickerMonth",props:{"allowed-dates":{default:"undefined",value:"",type:"unknown[] | ((date: unknown) => boolean)",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},disabled:{default:"false",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},"display-value":{default:"undefined",value:"",type:"unknown",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"},"hide-weekdays":{default:"false",value:"",type:"boolean",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"},max:{default:"undefined",value:"",type:"unknown",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"},min:{default:"undefined",value:"",type:"unknown",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"},":v-model":{default:"undefined",value:"",type:"unknown[]",description:"The value of the component v-mode. If the component supports variants, the default is an empty array.",description_zh:"组件 v-mode 的值。如果组件支持多属性，默认为空数组。"},month:{default:"undefined",value:"",type:"string | number",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"},multiple:{default:"false",value:"",type:"number | boolean | 'range' | (string & {})",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"},"show-adjacent-months":{default:"false",value:"",type:"boolean",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"},"show-week":{default:"false",value:"",type:"boolean",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"},weekdays:{default:"[0, 1, 2, 3, 4, 5, 6]",value:"",type:"number[]",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"},year:{default:"undefined",value:"",type:"string | number",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"}},link:"https://vuetifyjs.com/zh-Hans/api/v-date-picker-month/#props",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-date-picker-month/#props",typeDetail:{},events:[{name:"update:modelValue",description:"An event that is raised when a component's model-value changes.",description_zh:"当组件的 model-value 更改时引发的事件。",params:"[unknown]",value:""},{name:"update:month",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）",params:"[number]",value:""},{name:"update:year",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）",params:"[number]",value:""}],methods:[],slots:[{name:"day",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{ props: { onClick: () => void }; item: any; i: number }"}]},k={name:"VDatePickerMonths",props:{color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},height:{default:"undefined",value:"",type:"string | number",description:"Sets the height of the component.",description_zh:"设定组件的高度。"},":v-model":{default:"undefined",value:"",type:"number",description:"The value of the component v-mode. If the component supports variants, the default is an empty array.",description_zh:"组件 v-mode 的值。如果组件支持多属性，默认为空数组。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-date-picker-months/#props",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-date-picker-months/#props",typeDetail:{},events:[{name:"update:modelValue",description:"An event that is raised when a component's model-value changes.",description_zh:"当组件的 model-value 更改时引发的事件。",params:"[any]",value:""}],methods:[],slots:[{name:"month",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  month: { text: string; value: number }\n  i: number\n  props: { onClick: () => void }\n}"}]},x={name:"VDatePickerYears",props:{color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},height:{default:"undefined",value:"",type:"string | number",description:"Sets the height of the component.",description_zh:"设定组件的高度。"},max:{default:"undefined",value:"",type:"unknown",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"},min:{default:"undefined",value:"",type:"unknown",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"},":v-model":{default:"undefined",value:"",type:"number",description:"The value of the component v-mode. If the component supports variants, the default is an empty array.",description_zh:"组件 v-mode 的值。如果组件支持多属性，默认为空数组。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-date-picker-years/#props",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-date-picker-years/#props",typeDetail:{},events:[{name:"update:modelValue",description:"An event that is raised when a component's model-value changes.",description_zh:"当组件的 model-value 更改时引发的事件。",params:"[number]",value:""}],methods:[],slots:[{name:"year",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  year: { text: string; value: number }\n  i: number\n  props: {\n    active: boolean\n    color: string\n    rounded: boolean\n    text: string\n    variant: 'flat' | 'text'\n    onClick: () => void\n  }\n}"}]},ht={name:"VDefaultsProvider",props:{defaults:{default:"undefined",value:"",type:"{  global: Record<string, unknown>  [string]: Record<string, unknown>}",description:"Specify new default prop values for components. Keep in mind that this will be merged with previously defined values.",description_zh:"为组件指定新的缺省属性值。请记住，这将与先前定义的值合并。"},disabled:{default:"false",value:"",type:"boolean",description:"Turns off all calculations of new default values for improved performance in situations where defaults propagation isn’t necessary.",description_zh:"关闭所有新默认值的计算，以便在不需要默认传播的情况下提高性能。"},reset:{default:"undefined",value:"",type:"string | number",description:"Reset the default values up the nested chain by {n} amount.",description_zh:"将嵌套链上的默认值重置为 {n} 个数量。"},root:{default:"false",value:"",type:"string | boolean",description:"Force current defaults to match the application root defaults.",description_zh:"强制当前默认值与应用程序根默认值匹配。"},scoped:{default:"false",value:"",type:"boolean",description:"Prevents the ability for default values to be inherited from parent components.",description_zh:"阻止从父组件继承默认值的功能。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-defaults-provider/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-defaults-provider/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},mt={name:"VDialog",props:{absolute:{default:"false",value:"",type:"boolean",version:"",description:"Applies position: absolute to the content element.",description_zh:"将 position： absolute 应用于 content 元素。",required:!1},activator:{default:"undefined",value:"",type:"Element | 'parent' | (string & {}) | ComponentPublicInstance",version:"",description:"Explicitly sets the overlay’s activator.",description_zh:"显式设置叠加层的激活器。",required:!1},"activator-props":{default:"{}",value:"",type:"unknown",version:"",description:"Apply custom properties to the activator.",description_zh:"将自定义属性应用于激活器。",required:!1},attach:{default:"false",value:"",type:"string | boolean | Element",version:"",description:"Specifies which DOM element the overlay content should teleport to. Can be a direct element reference, querySelector string, or true to disable teleporting. Uses body by default.",description_zh:"指定覆盖内容应传送到哪个 DOM 元素。可以是直接元素引用、querySelector 字符串或 true，以禁用传送。默认使用 body。",required:!1},"close-delay":{default:"undefined",value:"",type:"string | number",version:"",description:"Milliseconds to wait before closing component. Only applies to hover and focus events.",description_zh:"关闭组件之前等待的毫秒数。仅适用于悬停和焦点事件。",required:!1},"close-on-back":{default:"true",value:"",type:"boolean",version:"",description:"Closes the overlay content when the browser’s back button is pressed or $router.back() is called, cancelling the original navigation. persistent overlays will cancel navigation and animate as if they were clicked outside instead of closing.",description_zh:"在按下浏览器的后退按钮或调用 $router.back（） 时关闭覆盖内容，从而取消原始导航。永久叠加将取消导航并制作动画，就像在外部单击而不是关闭一样。",required:!1},"close-on-content-click":{default:"false",value:"",type:"boolean",version:"",description:"Closes component when you click on its content.",description_zh:"单击组件内容时关闭组件。",required:!1},contained:{default:"false",value:"",type:"boolean",version:"",description:"Limits the size of the component and scrim to its offset parent. Implies absolute and attach. (Note: The parent element must have position: relative.).",description_zh:"将零部件和纱布的大小限制为其偏移父级。暗示 absolute 和 attach。（注意：父元素必须具有 position： relative。",required:!1},"content-class":{default:"undefined",value:"",type:"any",version:"",description:"Applies a custom class to the detached element. This is useful because the content is moved to the beginning of the v-app component (unless the attach prop is provided) and is not targetable by classes passed directly on the component.",description_zh:"将自定义类应用于分离的元素。这很有用，因为内容被移动到 v-app 组件的开头（除非提供了 attach 属性），并且不能被直接在组件上传递的类所定位。",required:!1},"content-props":{default:"undefined",value:"",type:"any",version:"",description:"Apply custom properties to the content.",description_zh:"将自定义属性应用于内容。",required:!1},disabled:{default:"false",value:"",type:"boolean",version:"",description:"Removes the ability to click or target the component.",description_zh:"删除单击组件或定位组件的功能。",required:!1},eager:{default:"false",value:"",type:"boolean",version:"",description:"Forces the component’s content to render when it mounts. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO.",description_zh:"强制组件的内容在挂载时呈现。如果您的内容不会在 DOM 中呈现，并且您希望为 SEO 抓取，这将非常有用。",required:!1},fullscreen:{default:"false",value:"",type:"boolean",version:"",description:"Changes layout for fullscreen display.",description_zh:"更改全屏显示的布局。",required:!1},height:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the height for the component.",description_zh:"设置组件的高度。",required:!1},location:{default:"'bottom'",value:"",type:"Anchor",version:"",description:"Specifies the anchor point for positioning the component, using directional cues to align it either horizontally, vertically, or both…",description_zh:"指定用于定位组件的锚点，使用方向提示将其水平对齐、垂直对齐或两者对齐......",required:!1},"location-strategy":{default:"'static'",value:"",type:"static / connected / LocationStrategyFn",version:"",description:"A function used to specifies how the component should position relative to its activator.",description_zh:"用于指定组件相对于其激活器的位置的函数。",required:!1},"max-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum height for the component.",description_zh:"设置组件的最大高度。",required:!1},"max-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。",required:!1},"min-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum height for the component.",description_zh:"设置组件的最小高度。",required:!1},"min-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum width for the component.",description_zh:"设置组件的最小宽度。",required:!1},"v-model":{default:"false",value:"",type:"boolean",version:"",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v-model 值。如果 component 支持 multiple prop，则默认为空数组。",required:!1},"no-click-animation":{default:"false",value:"",type:"boolean",version:"",description:"Disables the bounce effect when clicking outside of a v-dialog’s content when using the persistent prop.",description_zh:"在使用 persistent 属性时，当单击 v-dialog 内容外部时禁用弹跳效果。",required:!1},offset:{default:"undefined",value:"",type:"string | number | number[]",version:"",description:"A single value that offsets content away from the target based upon what side it is on.",description_zh:"一个值，该值根据内容所在的一侧将内容从目标偏移。",required:!1},opacity:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the overlay opacity.",description_zh:"设置叠加不透明度。",required:!1},"open-delay":{default:"undefined",value:"",type:"string | number",version:"",description:"Milliseconds to wait before opening component. Only applies to hover and focus events.",description_zh:"打开组件之前等待的毫秒数。仅适用于悬停和焦点事件。",required:!1},"open-on-click":{default:"undefined",value:"",type:"boolean",version:"",description:"Activate the component when the activator is clicked.",description_zh:"单击激活器时激活组件。",required:!1},"open-on-focus":{default:"undefined",value:"",type:"boolean",version:"",description:"Activate the component when the activator is focused.",description_zh:"当激活器聚焦时激活组件。",required:!1},"open-on-hover":{default:"false",value:"",type:"boolean",version:"",description:"Designates whether component should activate when its activator is hovered.",description_zh:"指定组件是否应在其激活器悬停时激活。",required:!1},origin:{default:"'center center'",value:"",type:"Anchor / auto / overlap",version:"",description:"Sets the transition origin on the element. You can find more information on the MDN documentation for transition origin.",description_zh:"设置元素上的过渡原点。您可以在 transition origin 的 MDN 文档上找到更多信息。",required:!1},persistent:{default:"false",value:"",type:"boolean",version:"",description:"Clicking outside of the element or pressing esc key will not deactivate it.",description_zh:"单击元素外部或按 Esc 键不会将其停用。",required:!1},"retain-focus":{default:"true",value:"",type:"boolean",version:"",description:"Tab focus will return to the first child of the dialog by default. Disable this when using external tools that require focus such as TinyMCE or vue-clipboard.",description_zh:"默认情况下，Tab 键焦点将返回到对话框的第一个子项。当使用需要焦点的外部工具（如 TinyMCE 或 vue-clipboard）时，请禁用此功能。",required:!1},scrim:{default:"true",value:"",type:"string | boolean",version:"",description:"Accepts true/false to enable background, and string to define color.",description_zh:"接受 true/false 以启用背景，接受 string 以定义颜色。",required:!1},scrollable:{default:"false",value:"",type:"boolean",version:"",description:"When set to true, expects a v-card and a v-card-text component with a designated height. For more information, check out the scrollable example.",description_zh:"当设置为 true 时，需要一个 v-card 和一个具有指定高度的 v-card-text 组件。有关更多信息，请查看可滚动示例。",required:!1},"scroll-strategy":{default:"'block'",value:"",type:"none / close / block / reposition / ScrollStrategyFn",version:"",description:"Strategy used when the component is activate and user scrolls.",description_zh:"当组件处于 activate 状态且用户滚动时使用的策略。",required:!1},target:{default:"undefined",value:"",type:"  | Element  | 'parent'  | 'cursor'  | (string & {})  | ComponentPublicInstance  | [number, number]",version:"",description:"For locationStrategy=“connected”, specify an element or array of x,y coordinates that the overlay should position itself relative to. This will be the activator element by default.",description_zh:"对于 locationStrategy=“connected”，指定叠加层应相对于其定位自身的 x，y 坐标的元素或数组。默认情况下，这将是 activator 元素。",required:!1},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},transition:{default:"{component: {name: 'VDialogTransition'}}",value:"",type:"  | string  | boolean  | (TransitionProps & { component: Component })  | { component: Component }",version:"",description:"Sets the component transition. Can be one of the built in or custom transition.",description_zh:"设置零部件过渡。可以是内置或自定义过渡之一。",required:!1},width:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the width for the component.",description_zh:"设置组件的宽度。",required:!1},"z-index":{default:"2400",value:"",type:"string | number",version:"",description:"The z-index used for the component.",description_zh:"用于组件的 z-index。",required:!1}},link:"https://vuetifyjs.com/en/api/v-dialog/",link_zh:"https://vuetifyjs.com/en/api/v-dialog/",typeDetail:{},events:[{name:"afterEnter",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"[]",value:""},{name:"afterLeave",description:"Event that fires after the overlay has finished transitioning out.",description_zh:"在叠加完成过渡后触发的事件。",params:"[]",value:""},{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件的模型更改时发出的事件。",params:"[boolean]",value:""}],methods:[],slots:[{name:"activator",description:"When used, will activate the component when clicked (or hover for specific components). This manually stops the event propagation. Without this slot, if you open the component through its model, you will need to manually stop the event propagation.",description_zh:"使用时，将在单击时激活组件（或将鼠标悬停在特定组件上）。这将手动停止事件传播。如果没有此插槽，如果通过其模型打开组件，则需要手动停止事件传播。",params:"{\n  isActive: boolean\n  props: Record<string, any>\n  targetRef: TemplateRef\n}"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{ isActive: Ref<boolean> }"}],exposed:[{name:"activatorEl",description:"Ref to the current activator element.",description_zh:"Ref to the current activator element.",detail:"HTMLElement"},{name:"animateClick",description:"Function invoked when user clicks outside the component and the persistent prop is used.",description_zh:"Function invoked when user clicks outside the component and the persistent prop is used.",detail:"() => void"},{name:"contentEl",description:"Ref to the current content element.",description_zh:"Ref to the current content element.",detail:"HTMLElement"},{name:"globalTop",description:"Used by activator to determine a components position in the global stack order.",description_zh:"Used by activator to determine a components position in the global stack order.",detail:"boolean"},{name:"localTop",description:"Used by activator to determine a components position in the local stack order.",description_zh:"Used by activator to determine a components position in the local stack order.",detail:"boolean"},{name:"scrimEl",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"HTMLElement"},{name:"target",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"HTMLElement | [number, number]"},{name:"updateLocation",description:"Function used for locationStrategy positioning.",description_zh:"Function used for locationStrategy positioning.",detail:"(e: Event) => void"}]},R={name:"VDialogBottomTransition",props:{disabled:{default:"false",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},group:{default:"false",value:"",type:"boolean",description:"Creates a transition-group component. You can find more information in the vue docs.",description_zh:"创建转换组组件。你可以在 vue 文档中找到更多信息。"},"hide-on-leave":{default:"false",value:"",type:"boolean",description:"Hides the leaving element (no exit animation).",description_zh:"隐藏离开元素（无退出动画）。"},"leave-absolute":{default:"false",value:"",type:"boolean",description:"Absolutely positions the leaving element (useful for FLIP).",description_zh:"绝对定位离开元素（对 FLIP 有用）。"},mode:{default:"undefined",value:"",type:"string",description:"Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation for transition modes.",description_zh:"设置过渡模式（不适用于过渡组）。你可以在 Vue 文档中找到更多关于过渡模式的信息。"},origin:{default:"undefined",value:"",type:"string",description:"Sets the origin of the animation on the element. You can explore more for transition origin on the MDN documentation",description_zh:"设置元素上的动画原点。您可以在 MDN 文档上浏览更多 for transition origin"}},link:"https://vuetifyjs.com/zh-Hans/api/v-dialog-bottom-transition/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-dialog-bottom-transition/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},E={name:"VDialogTopTransition",props:{disabled:{default:"false",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},group:{default:"false",value:"",type:"boolean",description:"Creates a transition-group component. You can find more information in the vue docs.",description_zh:"创建转换组组件。你可以在 vue 文档中找到更多信息。"},"hide-on-leave":{default:"false",value:"",type:"boolean",description:"Hides the leaving element (no exit animation).",description_zh:"隐藏离开元素（无退出动画）。"},"leave-absolute":{default:"false",value:"",type:"boolean",description:"Absolutely positions the leaving element (useful for FLIP).",description_zh:"绝对定位离开元素（对 FLIP 有用）。"},mode:{default:"undefined",value:"",type:"string",description:"Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation for transition modes.",description_zh:"设置过渡模式（不适用于过渡组）。你可以在 Vue 文档中找到更多关于过渡模式的信息。"},origin:{default:"undefined",value:"",type:"string",description:"Sets the origin of the animation on the element. You can explore more for transition origin on the MDN documentation",description_zh:"设置元素上的动画原点。您可以在 MDN 文档上浏览更多 for transition origin"}},link:"https://vuetifyjs.com/zh-Hans/api/v-dialog-top-transition/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-dialog-top-transition/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},P={name:"VDialogTransition",props:{target:{default:"undefined",value:"",type:"HTMLElement | [number, number]",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"}},link:"https://vuetifyjs.com/zh-Hans/api/v-dialog-transition/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-dialog-transition/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},ft={name:"VDivider",props:{color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},inset:{default:"false",value:"",type:"boolean",description:"Add indentation (72px)",description_zh:"添加缩进 (72px)"},length:{default:"undefined",value:"",type:"string | number",description:"Sets the separator length. The default unit is px.",description_zh:"设置分隔符长度。默认单位为px。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},thickness:{default:"undefined",value:"",type:"string | number",description:"Sets the separator thickness. The default unit is px.",description_zh:"设置分隔符厚度。默认单位为px。"},vertical:{default:"false",value:"",type:"boolean",description:"Dividing lines are displayed vertically.",description_zh:"垂直显示分割线。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-divider/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-divider/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},vt={name:"VEmptyState",props:{"action-text":{default:"undefined",value:"",type:"string",description:"The text used for the action button.",description_zh:"用于操作按钮的文本。"},"bg-color":{default:"undefined",value:"",type:"string",description:"Applies specified color to the control’s background. Used on components that also support the color prop. - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件的背景。用于还支持颜色道具的组件。- 支持实用程序颜色（例如 success 或紫色）或 CSS 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},headline:{default:"undefined",value:"",type:"string",description:"A large headline often used for 404 pages.",description_zh:"一个大标题，通常用于 404 页。",required:!0},height:{default:"undefined",value:"",type:"string | number",description:"Sets the height of the component.",description_zh:"设定组件的高度。"},href:{default:"undefined",value:"",type:"string",description:"The URL the action button links to.",description_zh:"操作按钮链接到的 URL。"},icon:{default:"undefined",value:"",type:"any",description:"Assign a v-icon icon to the button.",description_zh:"为按钮指定一个 v-icon 图标。"},image:{default:"undefined",value:"",type:"string",description:"Apply a specific image using v-img.",description_zh:"使用 v-img 应用特定图像。",required:!0},justify:{default:"center",value:"",type:"start / center / end",description:"Control the justification of the text.",description_zh:"控制文本的对齐方式。"},"max-height":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum height of the component.",description_zh:"设定组件的最大高度。"},"max-width":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum width of the component.",description_zh:"设定组件的最大宽度。"},"min-height":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum height of the component.",description_zh:"设定组件的最小高度。"},"min-width":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum width of the component.",description_zh:"设定组件的最小宽度。"},size:{default:"undefined",value:"",type:"string | number",description:"设置组件的高度和宽度。 默认单位是px。 也可以使用以下预定义的大小：x-small、small、default、large和x-large。",description_zh:"设置组件的高度和宽度。 默认单位是px。 也可以使用以下预定义的大小：x-small、small、default、large和x-large。"},text:{default:"undefined",value:"",type:"string",description:"Sets the content text of the component.",description_zh:"设置组件的内容文本。",required:!0},"text-width":{default:"500",value:"",type:"string | number",description:"Sets the width of the text container.",description_zh:"设置文本容器的宽度。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},title:{default:"undefined",value:"",type:"string",description:"Specify a title text for the component.",description_zh:"指定组件的标题文本。",required:!0},to:{default:"undefined",value:"",type:"string",description:"The URL the action button links to.",description_zh:"操作按钮链接到的 URL。"},width:{default:"undefined",value:"",type:"string | number",description:"Sets the width of the component.",description_zh:"设定组件的宽度。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-empty-state/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-empty-state/#links",typeDetail:{},events:[{name:"click:action",description:"Event emitted when the action button is clicked.",description_zh:"单击操作按钮时发出的事件。",params:"[Event]",value:""}],methods:[],slots:[{name:"actions",description:"Slot for the action button.",description_zh:"操作按钮的插槽。",params:"{ props: { onClick: (e: Event) => void } }"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:""},{name:"headline",description:"Slot for the component’s headline.",description_zh:"组件标题的插槽。",params:""},{name:"media",description:"Slot for the component’s media.",description_zh:"组件媒体的插槽。",params:""},{name:"text",description:"Slot for the component’s text content.",description_zh:"组件文本内容的插槽。",params:""},{name:"title",description:"Slot for the component’s title content.",description_zh:"组件标题内容的插槽。",params:""}]},q={name:"VExpandTransition",props:{disabled:{default:"false",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},mode:{default:"in-out",value:"",type:"default / in-out / out-in",description:"Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation for transition modes.",description_zh:"设置过渡模式（不适用于过渡组）。你可以在 Vue 文档中找到更多关于过渡模式的信息。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-expand-transition/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-expand-transition/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},M={name:"VExpandXTransition",props:{disabled:{default:"false",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},mode:{default:"in-out",value:"",type:"default / in-out / out-in",description:"Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation for transition modes.",description_zh:"设置过渡模式（不适用于过渡组）。你可以在 Vue 文档中找到更多关于过渡模式的信息。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-expand-x-transition/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-expand-x-transition/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},bt={name:"VExpansionPanel",props:{"bg-color":{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control’s background. Used on components that also support the color prop. - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件的背景。用于也支持 color 属性的组件。- 支持实用工具颜色（例如 Success 或 Purple）或 CSS 颜色（#033 或 RGBA（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},"collapse-icon":{default:"'$collapse'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Icon used when the expansion panel is in a collapsable state.",description_zh:"当扩展面板处于可折叠状态时使用的图标。",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},disabled:{default:"false",value:"",type:"boolean",version:"",description:"Disables the expansion-panel content.",description_zh:"禁用扩展面板内容。",required:!1},eager:{default:"false",value:"",type:"boolean",version:"",description:"Forces the component’s content to render when it mounts. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO.",description_zh:"强制组件的内容在挂载时呈现。如果您的内容不会在 DOM 中呈现，并且您希望为 SEO 抓取，这将非常有用。",required:!1},elevation:{default:"undefined",value:"",type:"string | number",version:"",description:"Designates an elevation applied to the component between 0 and 24. You can find more information on the elevation page.",description_zh:"指定应用于组件的 0 到 24 之间的高程。您可以在海拔页面上找到更多信息。",required:!1},"expand-icon":{default:"'$expand'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Icon used when the expansion panel is in a expandable state.",description_zh:"当扩展面板处于可展开状态时使用的图标。",required:!1},focusable:{default:"false",value:"",type:"boolean",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},height:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the height for the component.",description_zh:"设置组件的高度。",required:!1},"hide-actions":{default:"false",value:"",type:"boolean",version:"",description:"Hide the expand icon in the content title.",description_zh:"隐藏内容标题中的展开图标。",required:!1},"max-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum height for the component.",description_zh:"设置组件的最大高度。",required:!1},"max-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。",required:!1},"min-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum height for the component.",description_zh:"设置组件的最小高度。",required:!1},"min-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum width for the component.",description_zh:"设置组件的最小宽度。",required:!1},readonly:{default:"false",value:"",type:"boolean",version:"",description:"Makes the expansion-panel content read only.",description_zh:"将扩展面板内容设置为只读。",required:!1},ripple:{default:"false",value:"",type:"boolean | { class: string }",version:"",description:"Applies the v-ripple directive.",description_zh:"应用 v-ripple 指令。",required:!1},rounded:{default:"undefined",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. Find more information on available border radius classes on the Border Radius page.",description_zh:"指定应用于组件的 border-radius。这可以是 0、xs、sm、true、lg、xl、pill、circle 和 shaped。在 Border Radius 页面上查找有关可用边界半径类的更多信息。",required:!1},"selected-class":{default:"undefined",value:"",type:"string",version:"",description:"Configure the active CSS class applied when an item is selected.",description_zh:"配置在选择项目时应用的活动 CSS 类。",required:!1},static:{default:"false",value:"",type:"boolean",version:"",description:"Remove title size expansion when selected.",description_zh:"选中后删除标题大小扩展。",required:!1},tag:{default:"'div'",value:"",type:"string",version:"",description:"Specify a custom tag used on the root element.",description_zh:"指定根元素上使用的自定义标记。",required:!1},text:{default:"undefined",value:"",type:"string",version:"",description:"Specify content text for the component.",description_zh:"指定组件的内容文本。",required:!0},tile:{default:"false",value:"",type:"boolean",version:"",description:"Removes any applied border-radius from the component.",description_zh:"从组件中删除任何应用的 border-radius。",required:!1},title:{default:"undefined",value:"",type:"string",version:"",description:"Specify a title text for the component.",description_zh:"指定组件的标题文本。",required:!0},value:{default:"undefined",value:"",type:"any",version:"",description:"Controls the opened/closed state of content.",description_zh:"控制内容的打开/关闭状态。",required:!1},width:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the width for the component.",description_zh:"设置组件的宽度。",required:!1}},link:"https://vuetifyjs.com/en/api/v-expansion-panel/",link_zh:"https://vuetifyjs.com/en/api/v-expansion-panel/",typeDetail:{},events:[{name:"group:selected",description:"Event that is emitted when an item is selected within a group.",description_zh:"在组中选择项时发出的事件。",params:"[{ value: boolean }]",value:""}],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:""},{name:"text",description:"Slot for the component’s text content.",description_zh:"组件文本内容的插槽。",params:""},{name:"title",description:"Slot for the component’s title content.",description_zh:"组件标题内容的插槽。",params:""}],exposed:[{name:"groupItem",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"{\n  id: number\n  isSelected: boolean\n  isFirst: boolean\n  isLast: boolean\n  toggle: () => void\n  select: (value: boolean) => void\n  selectedClass: false | (string | undefined)[]\n  value: unknown\n  disabled: boolean | undefined\n  group: {\n    register: (item: GroupItem, cmp: ComponentInternalInstance) => void\n    unregister: (id: number) => void\n    select: (id: number, value: boolean) => void\n    selected: readonly number[]\n    isSelected: (id: number) => boolean\n    prev: () => void\n    next: () => void\n    selectedClass: string | undefined\n    items: { id: number; value: unknown; disabled: boolean | undefined }[]\n    disabled: boolean | undefined\n    getItemIndex: (value: unknown) => number\n  }\n}"}]},gt={name:"VExpansionPanels",props:{"bg-color":{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control’s background. Used on components that also support the color prop. - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件的背景。用于也支持 color 属性的组件。- 支持实用工具颜色（例如 Success 或 Purple）或 CSS 颜色（#033 或 RGBA（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},"collapse-icon":{default:"'$collapse'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Icon used when the expansion panel is in a collapsable state.",description_zh:"当扩展面板处于可折叠状态时使用的图标。",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},disabled:{default:"false",value:"",type:"boolean",version:"",description:"Puts all children components into a disabled state.",description_zh:"将所有子组件置于禁用状态。",required:!1},eager:{default:"false",value:"",type:"boolean",version:"",description:"Forces the component’s content to render when it mounts. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO.",description_zh:"强制组件的内容在挂载时呈现。如果您的内容不会在 DOM 中呈现，并且您希望为 SEO 抓取，这将非常有用。",required:!1},elevation:{default:"undefined",value:"",type:"string | number",version:"",description:"Designates an elevation applied to the component between 0 and 24. You can find more information on the elevation page.",description_zh:"指定应用于组件的 0 到 24 之间的高程。您可以在海拔页面上找到更多信息。",required:!1},"expand-icon":{default:"'$expand'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Icon used when the expansion panel is in a expandable state.",description_zh:"当扩展面板处于可展开状态时使用的图标。",required:!1},flat:{default:"false",value:"",type:"boolean",version:"",description:"Removes the expansion-panel’s elevation and borders.",description_zh:"删除扩展面板的标高和边框。",required:!1},focusable:{default:"false",value:"",type:"boolean",version:"",description:"Makes the expansion-panel headers focusable.",description_zh:"使扩展面板标题可聚焦。",required:!1},"hide-actions":{default:"false",value:"",type:"boolean",version:"",description:"Hide the expand icon in the content title.",description_zh:"隐藏内容标题中的展开图标。",required:!1},mandatory:{default:"false",value:"",type:"boolean / force",version:"",description:"Forces at least one item to always be selected (if available).",description_zh:"强制始终选择至少一个项目（如果可用）。",required:!1},":max":{default:"undefined",value:"",type:"number",version:"",description:"Sets a maximum number of selections that can be made.",description_zh:"设置可以进行的最大选择数。",required:!1},"v-model":{default:"undefined",value:"",type:"any",version:"",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v-model 值。如果 component 支持 multiple prop，则默认为空数组。",required:!1},multiple:{default:"false",value:"",type:"boolean",version:"",description:"Allows one to select multiple items.",description_zh:"允许选择多个项目。",required:!1},readonly:{default:"false",value:"",type:"boolean",version:"",description:"Makes the entire expansion-panel read only.",description_zh:"将整个扩展面板设置为只读。",required:!1},ripple:{default:"false",value:"",type:"boolean | { class: string }",version:"",description:"Applies the v-ripple directive.",description_zh:"应用 v-ripple 指令。",required:!1},rounded:{default:"undefined",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. Find more information on available border radius classes on the Border Radius page.",description_zh:"指定应用于组件的 border-radius。这可以是 0、xs、sm、true、lg、xl、pill、circle 和 shaped。在 Border Radius 页面上查找有关可用边界半径类的更多信息。",required:!1},"selected-class":{default:"undefined",value:"",type:"string",version:"",description:"Configure the active CSS class applied when an item is selected.",description_zh:"配置在选择项目时应用的活动 CSS 类。",required:!1},static:{default:"false",value:"",type:"boolean",version:"",description:"Remove title size expansion when selected.",description_zh:"选中后删除标题大小扩展。",required:!1},tag:{default:"'div'",value:"",type:"string",version:"",description:"Specify a custom tag used on the root element.",description_zh:"指定根元素上使用的自定义标记。",required:!1},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},tile:{default:"false",value:"",type:"boolean",version:"",description:"Removes the border-radius.",description_zh:"删除 border-radius。",required:!1},variant:{default:"'default'",value:"",type:"default / accordion / inset / popout",version:"",description:"Applies a distinct style to the component.",description_zh:"将不同的样式应用于组件。",required:!1}},link:"https://vuetifyjs.com/en/api/v-expansion-panels/",link_zh:"https://vuetifyjs.com/en/api/v-expansion-panels/",typeDetail:{},events:[{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件的模型更改时发出的事件。",params:"[unknown]",value:""}],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{ prev: () => void; next: () => void }"}],exposed:[{name:"next",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"() => void"},{name:"prev",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"() => void"}],suggestions:["v-expansion-panel","v-expansion-panel-title","v-expansion-panel-text"]},yt={name:"VExpansionPanelText",props:{eager:{default:"false",value:"",type:"boolean",description:"Forces the component’s content to render when it mounts. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO.",description_zh:"强制在装入组件时呈现组件的内容。如果您的内容不会在 DOM 中呈现，而您希望为 SEO 进行爬网，这将非常有用。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-expansion-panel-text/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-expansion-panel-text/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},It={name:"VExpansionPanelTitle",props:{"collapse-icon":{default:"$collapse",value:"",type:"any",description:"Icon used when the expansion panel is in a collapsable state.",description_zh:"当扩展面板处于可折叠状态时使用的图标。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},"expand-icon":{default:"$expand",value:"",type:"any",description:"Icon used when the expansion panel is in a expandable state.",description_zh:"当扩展面板处于可展开状态时使用的图标。"},"hide-actions":{default:"false",value:"",type:"boolean",description:"Hide the expand icon in the content title.",description_zh:"隐藏内容标题中的展开图标。"},readonly:{default:"false",value:"",type:"boolean",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"},ripple:{default:"false",value:"",type:"boolean | { class: string }",description:"Apply the v-ripple directive.",description_zh:"应用 v-ripple 指令。"},static:{default:"false",value:"",type:"boolean",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"}},link:"https://vuetifyjs.com/zh-Hans/api/v-expansion-panel-title/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-expansion-panel-title/#links",typeDetail:{},events:[],methods:[],slots:[{name:"actions",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  collapseIcon:\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n  disabled: boolean\n  expanded: boolean\n  expandIcon:\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n  readonly: boolean\n}"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{\n  collapseIcon:\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n  disabled: boolean\n  expanded: boolean\n  expandIcon:\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n  readonly: boolean\n}"}]},St={name:"VFab",props:{absolute:{default:"false",value:"",type:"boolean",description:"Applies position: absolute to the component.对组件应用绝对位置。",description_zh:"Applies position: absolute to the component.对组件应用绝对位置。"},active:{default:"true",value:"",type:"boolean",description:"Controls the active state of the item. This is typically used to highlight the component.控制项目的活动状态。 这通常用于突出显示组件。",description_zh:"Controls the active state of the item. This is typically used to highlight the component.控制项目的活动状态。 这通常用于突出显示组件。"},app:{default:"false",value:"",type:"boolean",description:"If true, attaches to the closest layout and positions according to the value of location.如果为 true，则根据位置值附加到最近的布局和位置。",description_zh:"If true, attaches to the closest layout and positions according to the value of location.如果为 true，则根据位置值附加到最近的布局和位置。"},appear:{default:"false",value:"",type:"boolean",description:"Used to control the animation of the FAB.用于控制FAB的动画。",description_zh:"Used to control the animation of the FAB.用于控制FAB的动画。"},"append-icon":{default:"undefined",value:"",type:"any",description:"Creates a v-icon component after default content in the append slot.",description_zh:"在追加插槽中的默认内容之后创建一个 v-icon 组件。"},"base-color":{default:"undefined",value:"",type:"string",description:"Sets the color of component when not focused.",description_zh:"设置未对焦时组件的颜色。"},block:{default:"false",value:"",type:"boolean",description:"Expands the button to 100% of available space.",description_zh:"将按钮展开到可用空间的 100%。"},border:{default:"false",value:"",type:"string | number | boolean",description:"Designates the border-radius applied to the component. This can be xs, sm, md, lg, xl.",description_zh:"指定应用于组件的边框半径。这可以是 xs、sm、md、lg、xl。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},density:{default:"default",value:"",type:"default / comfortable / compact",description:"Adjusts the vertical height used by the component.",description_zh:"调整元件使用的垂直高度。"},disabled:{default:"false",value:"",type:"boolean",description:"Removes the ability to click or target the component.",description_zh:"删除了单击组件或将组件定位的功能。"},elevation:{default:"undefined",value:"",type:"string | number",description:"Designates an elevation applied to the component between 0 and 24. You can find more information on the elevation page.",description_zh:"指定应用于组件的高程介于 0 和 24 之间。您可以在高程页面上找到更多信息。"},exact:{default:"false",value:"",type:"boolean",description:"Exactly match the link. Without this, ‘/’ will match every route. You can find more information about the exact prop on the vue-router documentation.",description_zh:"完全匹配链接。如果没有这个，“/”将匹配每个路由。你可以在 vue-router 文档中找到更多关于这个 prop 的信息。"},extended:{default:"false",value:"",type:"boolean",description:"An alternate style for the FAB that expects text.",description_zh:"需要文本的 FAB 的替代样式。"},flat:{default:"false",value:"",type:"boolean",description:"Removes the button box shadow. This is different than using the ‘flat’ variant.",description_zh:"删除按钮框阴影。这与使用“扁平”变体不同。"},height:{default:"undefined",value:"",type:"string | number",description:"Sets the height for the component.",description_zh:"设置组件的高度。"},href:{default:"undefined",value:"",type:"string",description:"Designates the component as anchor and applies the href attribute.",description_zh:"将组件指定为锚点并应用 href 属性。"},icon:{default:"false",value:"",type:"any",description:"Apply a specific icon using the v-icon component. The button will become round.",description_zh:"使用 v-icon 组件应用特定图标。按钮将变为圆形。",required:!0},layout:{default:"false",value:"",type:"boolean",description:"If true, will effect layout dimensions based on size and position.",description_zh:"如果为 true，则将根据大小和位置影响布局尺寸。"},loading:{default:"false",value:"",type:"string | boolean",description:"Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - primary, secondary, success, info, warning, error) or a Boolean which uses the component color (set by color prop - if it’s supported by the component) or the primary color.",description_zh:"显示线性进度条。可以是指定应用于进度条的颜色的 String（任何材质颜色或主题颜色 - 主要颜色、次要颜色、成功颜色、信息颜色、警告颜色、错误颜色）或布尔值，它使用组件颜色（由颜色属性设置 - 如果组件支持）或主要颜色。"},location:{default:"bottom end",value:"",type:"start / end / left / right / top / bottom",description:"The location of the fab relative to the layout. Only works when using app.",description_zh:"晶圆厂相对于布局的位置。仅在使用应用程序时有效。"},"max-height":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum height for the component.",description_zh:"设置元件的最大高度。"},"max-width":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。"},"min-height":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum height for the component.",description_zh:"设置元件的最小高度。"},"min-width":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum width for the component.",description_zh:"设置组件的最小宽度。"},"v-model":{default:"true",value:"",type:"boolean",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v 模型值。如果组件支持多 prop，则默认为空数组。"},name:{default:"undefined",value:"",type:"string",description:"Assign a specific name for layout registration.",description_zh:"为布局注册指定特定名称。"},offset:{default:"false",value:"",type:"boolean",description:"Translates the Fab up or down, depending on if location is set to top or bottom.",description_zh:"向上或向下平移 Fab，具体取决于位置是设置为顶部还是底部。"},order:{default:"0",value:"",type:"string | number",description:"Adjust the order of the component in relation to its registration order.",description_zh:"根据组件的注册顺序调整组件的顺序。"},position:{default:"undefined",value:"",type:"static / relative / fixed / absolute / sticky",description:"Sets the position for the component.",description_zh:"设置组件的位置。"},"prepend-icon":{default:"undefined",value:"",type:"any",description:"Creates a v-icon component in the prepend slot before default content.",description_zh:"在默认内容之前的前置插槽中创建一个 v-icon 组件。"},readonly:{default:"false",value:"",type:"boolean",description:"Puts the button in a readonly state. Cannot be clicked or navigated to by keyboard.",description_zh:"将按钮置于只读状态。无法通过键盘单击或导航到。"},replace:{default:"false",value:"",type:"boolean",description:"Setting replace prop will call router.replace() instead of router.push() when clicked, so the navigation will not leave a history record. You can find more information about the replace prop on the vue-router documentation.",description_zh:"设置 replace prop 将在单击时调用 router.replace（） 而不是 router.push（），因此导航不会留下历史记录。你可以在 vue-router 文档中找到更多关于 replace prop 的信息。"},ripple:{default:"true",value:"",type:"boolean | { class: string }",description:"Applies the v-ripple directive.",description_zh:"应用 v-ripple 指令。"},rounded:{default:"undefined",value:"",type:"string | number | boolean",description:"Designates the border-radius applied to the component. This can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. Find more information on available border radius classes on the Border Radius page.",description_zh:"指定应用于组件的边框半径。这可以是 0、xs、sm、true、lg、xl、pill、circle 和 shaped。有关可用边框半径类的详细信息，请访问边框半径页面。"},"selected-class":{default:"undefined",value:"",type:"string",description:"Configure the active CSS class applied when an item is selected.",description_zh:"配置选择项目时应用的活动 CSS 类。"},size:{default:"default",value:"",type:"string | number",description:"Sets the height and width of the component. Default unit is px. Can also use the following predefined sizes: x-small, small, default, large, and x-large.",description_zh:"设置元件的高度和宽度。默认单位为 px。还可以使用以下预定义大小：x-small、small、default、large 和 x-large。"},slim:{default:"false",value:"",type:"boolean",description:"Reduces padding to 0 8px.",description_zh:"将填充减少到 0 8px。"},stacked:{default:"false",value:"",type:"boolean",description:"Displays the button as a flex-column.",description_zh:"将按钮显示为弹性列。"},symbol:{default:"undefined",value:"",type:"any",description:"The Symbol used to hook into group functionality for components like v-btn-toggle and v-bottom-navigation.",description_zh:"用于挂接到 v-btn-toggle 和 v-bottom-navigation 等组件的组功能的 Symbol。"},tag:{default:"button",value:"",type:"string",description:"Specify a custom tag used on the root element.",description_zh:"指定用于根元素的自定义标记。"},text:{default:"undefined",value:"",type:"string",description:"Specify content text for the component.",description_zh:"指定组件的内容文本。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},tile:{default:"false",value:"",type:"boolean",description:"Removes any applied border-radius from the component.",description_zh:"从元件中移除任何应用的边框半径。"},to:{default:"undefined",value:"",type:"RouteLocationRaw",description:"Denotes the target route of the link. You can find more information about the to prop on the vue-router documentation.",description_zh:"表示链路的目标路由。你可以在 vue-router 文档中找到更多关于 to prop 的信息。"},transition:{default:"fab-transition",value:"",type:"string | boolean | (TransitionProps & { component: Component })",description:"Sets the component transition. Can be one of the built in or custom transition.",description_zh:"设置组件转换。可以是内置或自定义过渡之一。"},value:{default:"undefined",value:"",type:"any",description:"The value used when the component is selected in a group. If not provided, a unique ID will be used.",description_zh:"在组中选择组件时使用的值。如果未提供，将使用唯一 ID。"},variant:{default:"elevated",value:"",type:"flat / text / elevated / tonal / outlined / plain",description:"Applies a distinct style to the component.",description_zh:"将不同的样式应用于组件。"},width:{default:"undefined",value:"",type:"string | number",description:"Sets the width for the component.",description_zh:"设置元件的宽度。"}},link:"https://vuetifyjs.com/en/api/v-fab/#links",link_zh:"https://vuetifyjs.com/en/api/v-fab/#links",typeDetail:{},events:[{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件模型更改时发出的事件。",params:"[boolean]",value:""}],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。"}]},O={name:"VFabTransition",props:{disabled:{default:"false",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},group:{default:"false",value:"",type:"boolean",description:"Creates a transition-group component. You can find more information in the vue docs.",description_zh:"创建转换组组件。你可以在 vue 文档中找到更多信息。"},"hide-on-leave":{default:"false",value:"",type:"boolean",description:"Hides the leaving element (no exit animation).",description_zh:"隐藏离开元素（无退出动画）。"},"leave-absolute":{default:"false",value:"",type:"boolean",description:"Absolutely positions the leaving element (useful for FLIP).",description_zh:"绝对定位离开元素（对 FLIP 有用）。"},mode:{default:"out-in",value:"",type:"string",description:"Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation for transition modes.",description_zh:"设置过渡模式（不适用于过渡组）。你可以在 Vue 文档中找到更多关于过渡模式的信息。"},origin:{default:"center center",value:"",type:"string",description:"Sets the origin of the animation on the element. You can explore more for transition origin on the MDN documentation",description_zh:"设置元素上的动画原点。您可以在 MDN 文档上浏览更多 for transition origin"}},link:"https://vuetifyjs.com/zh-Hans/api/v-fab-transition/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-fab-transition/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},G={name:"VFadeTransition",props:{disabled:{default:"false",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},group:{default:"false",value:"",type:"boolean",description:"Creates a transition-group component. You can find more information in the vue docs.",description_zh:"创建转换组组件。你可以在 vue 文档中找到更多信息。"},"hide-on-leave":{default:"false",value:"",type:"boolean",description:"Hides the leaving element (no exit animation).",description_zh:"隐藏离开元素（无退出动画）。"},"leave-absolute":{default:"false",value:"",type:"boolean",description:"Absolutely positions the leaving element (useful for FLIP).",description_zh:"绝对定位离开元素（对 FLIP 有用）。"},mode:{default:"undefined",value:"",type:"string",description:"Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation for transition modes.",description_zh:"设置过渡模式（不适用于过渡组）。你可以在 Vue 文档中找到更多关于过渡模式的信息。"},origin:{default:"undefined",value:"",type:"string",description:"Sets the origin of the animation on the element. You can explore more for transition origin on the MDN documentation",description_zh:"设置元素上的动画原点。您可以在 MDN 文档上浏览更多 for transition origin"}},link:"https://vuetifyjs.com/zh-Hans/api/v-fade-transition/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-fade-transition/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},A={name:"VField",props:{active:{default:"false",value:"",type:"boolean",version:"",description:"Controls the active state of the item. This is typically used to highlight the component.",description_zh:"控制项的活动状态。这通常用于突出显示组件。",required:!1},"append-inner-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Creates a v-icon component in the append-inner slot.",description_zh:"在 append-inner 插槽中创建 v-icon 组件。",required:!1},"base-color":{default:"undefined",value:"",type:"string",version:"",description:"Sets the color of the input when it is not focused.",description_zh:"设置输入未聚焦时的颜色。",required:!1},"bg-color":{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control’s background. Used on components that also support the color prop. - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件的背景。用于也支持 color 属性的组件。- 支持实用工具颜色（例如 Success 或 Purple）或 CSS 颜色（#033 或 RGBA（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},"center-affix":{default:"undefined",value:"",type:"boolean",version:"",description:"Vertically align appendInner, prependInner, clearIcon and label in the center.",description_zh:"将 appendInner、prependInner、clearIcon 和 label 垂直对齐在中心。",required:!1},clearable:{default:"false",value:"",type:"boolean",version:"",description:"Allows for the component to be cleared.",description_zh:"允许清除组件。",required:!1},"clear-icon":{default:"'$clear'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"The icon used when the clearable prop is set to true.",description_zh:"当 clearable prop 设置为 true 时使用的图标。",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},dirty:{default:"false",value:"",type:"boolean",version:"",description:"Manually apply the dirty state styling.",description_zh:"手动应用 dirty state 样式。",required:!1},disabled:{default:"null",value:"",type:"boolean",version:"",description:"Removes the ability to click or target the input.",description_zh:"删除单击或定位输入的功能。",required:!1},error:{default:"false",value:"",type:"boolean",version:"",description:"Puts the input in a manual error state.",description_zh:"将输入置于手动错误状态。",required:!1},flat:{default:"false",value:"",type:"boolean",version:"",description:"Removes box shadow when using a variant with elevation.",description_zh:"使用具有高程的变量时删除框阴影。",required:!1},focused:{default:"false",value:"",type:"boolean",version:"",description:"Forces a focused state styling on the component.",description_zh:"强制对组件进行 focused state 样式设置。",required:!1},id:{default:"undefined",value:"",type:"string",version:"",description:"Sets the DOM id on the component.",description_zh:"设置组件上的 DOM ID。",required:!1},label:{default:"undefined",value:"",type:"string",version:"",description:"Sets the text of the v-label or v-field-label component.",description_zh:"设置 v-label 或 v-field-label 组件的文本。",required:!1},loading:{default:"false",value:"",type:"string | boolean",version:"",description:"Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - primary, secondary, success, info, warning, error) or a Boolean which uses the component color (set by color prop - if it’s supported by the component) or the primary color.",description_zh:"显示线性进度条。可以是指定应用于进度条的颜色的 String（任何材料颜色或主题颜色 - primary、secondary、success、info、warning、error），也可以是使用组件颜色（由 color 属性设置 - 如果组件支持）或主要颜色的 Boolean。",required:!1},"v-model":{default:"undefined",value:"",type:"unknown",version:"",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v-model 值。如果 component 支持 multiple prop，则默认为空数组。",required:!1},"persistent-clear":{default:"false",value:"",type:"boolean",version:"",description:"Always show the clearable icon when the input is dirty (By default it only shows on hover).",description_zh:"当输入脏时，始终显示可清除图标（默认情况下，它仅在悬停时显示）。",required:!1},"prepend-inner-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Creates a v-icon component in the prepend-inner slot.",description_zh:"在 prepend-inner 插槽中创建一个 v-icon 组件。",required:!1},reverse:{default:"false",value:"",type:"boolean",version:"",description:"Reverses the orientation.",description_zh:"反转方向。",required:!1},rounded:{default:"undefined",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. Find more information on available border radius classes on the Border Radius page.",description_zh:"指定应用于组件的 border-radius。这可以是 0、xs、sm、true、lg、xl、pill、circle 和 shaped。在 Border Radius 页面上查找有关可用边界半径类的更多信息。",required:!1},"single-line":{default:"false",value:"",type:"boolean",version:"",description:"Label does not move on focus/dirty.",description_zh:"标签在聚焦/脏污时不移动。",required:!1},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},tile:{default:"false",value:"",type:"boolean",version:"",description:"Removes any applied border-radius from the component.",description_zh:"从组件中删除任何应用的 border-radius。",required:!1},variant:{default:"'filled'",value:"",type:" / underlined / outlined / filled / solo / solo-inverted / solo-filled / plain",version:"",description:"Applies a distinct style to the component.",description_zh:"将不同的样式应用于组件。",required:!1}},link:"https://vuetifyjs.com/en/api/v-field/",link_zh:"https://vuetifyjs.com/en/api/v-field/",typeDetail:{},events:[{name:"click:appendInner",description:"Emitted when appended inner icon is clicked.",description_zh:"单击附加的内部图标时发出。",params:"[MouseEvent]",value:""},{name:"click:clear",description:"Emitted when clearable icon clicked.",description_zh:"单击可清除图标时发出。",params:"[MouseEvent]",value:""},{name:"click:prependInner",description:"Emitted when prepended inner icon is clicked.",description_zh:"单击前置的内部图标时发出。",params:"[MouseEvent]",value:""},{name:"update:focused",description:"Emitted when the input is focused or blurred",description_zh:"当输入聚焦或模糊时发出",params:"[boolean]",value:""},{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件的模型更改时发出的事件。",params:"[unknown]",value:""}],methods:[],slots:[{name:"append-inner",description:"Adds an item inside the input content.",description_zh:"在输入内容中添加项目。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n}"},{name:"clear",description:"Slot for custom clear icon (displayed when the clearable prop is equal to true).",description_zh:"自定义 clear 图标的插槽（当 clearable prop 等于 true 时显示）。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n} & { props: Record<string, any> }"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{\n  props: Record<string, unknown>\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n}"},{name:"label",description:"The default slot of the v-label or v-field-label component.",description_zh:"v-label 或 v-field-label 组件的默认插槽。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n} & { label: string; props: Record<string, any> }"},{name:"loader",description:"Slot for custom loader (displayed when loading prop is equal to true).",description_zh:"自定义加载器的插槽（当加载 prop 等于 true 时显示）。",params:"{ color: string; isActive: boolean }"},{name:"prepend-inner",description:"Slot that is prepended to the input.",description_zh:"Slot 添加到输入的前缀。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n}"}],exposed:[{name:"controlRef",description:"Reference to the control element of the field.",description_zh:"Reference to the control element of the field.",detail:"HTMLElement"}]},V={name:"VFieldLabel",props:{floating:{default:"false",value:"",type:"boolean",description:"Elevates the label above the slotted content.",description_zh:"将标签提升到插槽内容上方。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-field-label/#props",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-field-label/#props",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},zt={name:"VFileInput",props:{active:{default:"false",value:"",type:"boolean",version:"",description:"Controls the active state of the item. This is typically used to highlight the component.",description_zh:"控制项的活动状态。这通常用于突出显示组件。",required:!1},"append-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Creates a v-icon component after default content in the append slot.",description_zh:"在附加插槽中的默认内容之后创建一个 v 图标组件。",required:!1},"append-inner-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Creates a v-icon component in the append-inner slot.",description_zh:"在 append-inner 插槽中创建 v-icon 组件。",required:!1},"base-color":{default:"undefined",value:"",type:"string",version:"",description:"Sets the color of the input when it is not focused.",description_zh:"设置输入未聚焦时的颜色。",required:!1},"bg-color":{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control’s background. Used on components that also support the color prop. - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件的背景。用于也支持 color 属性的组件。- 支持实用工具颜色（例如 Success 或 Purple）或 CSS 颜色（#033 或 RGBA（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},"center-affix":{default:"undefined",value:"",type:"boolean",version:"",description:"Vertically align appendInner, prependInner, clearIcon and label in the center.",description_zh:"将 appendInner、prependInner、clearIcon 和 label 垂直对齐在中心。",required:!1},chips:{default:"false",value:"",type:"boolean",version:"",description:"Changes display of selections to chips.",description_zh:"将选择项的显示更改为筹码。",required:!1},clearable:{default:"true",value:"",type:"boolean",version:"",description:"Allows for the component to be cleared.",description_zh:"允许清除组件。",required:!1},"clear-icon":{default:"'$clear'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"The icon used when the clearable prop is set to true.",description_zh:"当 clearable prop 设置为 true 时使用的图标。",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},counter:{default:"false",value:"",type:"boolean",version:"",description:"Displays the number of selected files.",description_zh:"显示所选文件的数量。",required:!1},"counter-size-string":{default:"'$vuetify.fileInput.counterSize'",value:"",type:"string",version:"",description:"The text displayed when using the counter and show-size props. Can also be customized globally on the internationalization page.",description_zh:"使用 counter 和 show-size 属性时显示的文本。也可以在国际化页面上进行全局自定义。",required:!1},"counter-string":{default:"'$vuetify.fileInput.counter'",value:"",type:"string",version:"",description:"The text displayed when using the counter prop. Can also be customized globally on the internationalization page.",description_zh:"使用 counter prop 时显示的文本。也可以在国际化页面上进行全局自定义。",required:!1},density:{default:"'default'",value:"",type:"default / comfortable / compact",version:"",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。",required:!1},direction:{default:"'horizontal'",value:"",type:"horizontal / vertical",version:"",description:"Changes the direction of the input.",description_zh:"更改输入的方向。",required:!1},dirty:{default:"false",value:"",type:"boolean",version:"",description:"Manually apply the dirty state styling.",description_zh:"手动应用 dirty state 样式。",required:!1},disabled:{default:"null",value:"",type:"boolean",version:"",description:"Removes the ability to click or target the input.",description_zh:"删除单击或定位输入的功能。",required:!1},error:{default:"false",value:"",type:"boolean",version:"",description:"Puts the input in a manual error state.",description_zh:"将输入置于手动错误状态。",required:!1},"error-messages":{default:"[]",value:"",type:"string | string[]",version:"",description:"Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the rules prop. This field will not trigger validation.",description_zh:"将输入置于错误状态并传递自定义错误消息。将与 rules prop 发生的任何验证相结合。此字段不会触发验证。",required:!1},flat:{default:"false",value:"",type:"boolean",version:"",description:"Removes box shadow when using a variant with elevation.",description_zh:"使用具有高程的变量时删除框阴影。",required:!1},focused:{default:"false",value:"",type:"boolean",version:"",description:"Forces a focused state styling on the component.",description_zh:"强制对组件进行 focused state 样式设置。",required:!1},"hide-details":{default:"false",value:"",type:"boolean / auto",version:"",description:"Hides hint and validation errors. When set to auto messages will be rendered only if there’s a message (hint, error message, counter value etc) to display.",description_zh:"隐藏提示和验证错误。当设置为 auto 时，仅当有消息 （提示、错误消息、计数器值等） 要显示时，才会呈现消息。",required:!1},"hide-input":{default:"false",value:"",type:"boolean",version:"",description:"Display the icon only without the input (file names).",description_zh:"仅显示图标，不显示输入（文件名）。",required:!1},"hide-spin-buttons":{default:"false",value:"",type:"boolean",version:"",description:"Hides spin buttons on the input when type is set to number.",description_zh:"当 type 设置为 number 时，隐藏输入上的旋转按钮。",required:!1},hint:{default:"undefined",value:"",type:"string",version:"",description:"Displays hint text below the input when focused. Force this always open with the persistent-hint property.",description_zh:"聚焦时，在输入下方显示提示文本。使用 persistent-hint 属性强制 this always 打开。",required:!1},id:{default:"undefined",value:"",type:"string",version:"",description:"Sets the DOM id on the component.",description_zh:"设置组件上的 DOM ID。",required:!1},label:{default:"undefined",value:"",type:"string",version:"",description:"Sets the text of the v-label or v-field-label component.",description_zh:"设置 v-label 或 v-field-label 组件的文本。",required:!0},loading:{default:"false",value:"",type:"string | boolean",version:"",description:"Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - primary, secondary, success, info, warning, error) or a Boolean which uses the component color (set by color prop - if it’s supported by the component) or the primary color.",description_zh:"显示线性进度条。可以是指定应用于进度条的颜色的 String（任何材料颜色或主题颜色 - primary、secondary、success、info、warning、error），也可以是使用组件颜色（由 color 属性设置 - 如果组件支持）或主要颜色的 Boolean。",required:!1},"max-errors":{default:"1",value:"",type:"string | number",version:"",description:"Control the maximum number of shown errors from validation.",description_zh:"控制验证时显示的错误的最大数量。",required:!1},"max-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。",required:!1},messages:{default:"[]",value:"",type:"string | string[]",version:"",description:"Displays a list of messages or a single message if using a string.",description_zh:"显示消息列表，如果使用字符串，则显示单个消息。",required:!1},"min-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum width for the component.",description_zh:"设置组件的最小宽度。",required:!1},"v-model":{default:"null",value:"",type:"File | File[]",version:"",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v-model 值。如果 component 支持 multiple prop，则默认为空数组。",required:!1},multiple:{default:"false",value:"",type:"boolean",version:"",description:"Adds the multiple attribute to the input, allowing multiple file selections.",description_zh:"将 multiple 属性添加到输入中，从而允许选择多个文件。",required:!1},name:{default:"undefined",value:"",type:"string",version:"",description:"Sets the component’s name attribute.",description_zh:"设置组件的 name 属性。",required:!1},"persistent-clear":{default:"false",value:"",type:"boolean",version:"",description:"Always show the clearable icon when the input is dirty (By default it only shows on hover).",description_zh:"当输入脏时，始终显示可清除图标（默认情况下，它仅在悬停时显示）。",required:!1},"persistent-hint":{default:"false",value:"",type:"boolean",version:"",description:"Forces hint to always be visible.",description_zh:"强制提示始终可见。",required:!1},"prepend-icon":{default:"'$file'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Prepends an icon to the component, uses the same syntax as v-icon.",description_zh:"在组件前面加上一个图标，使用与 v-icon 相同的语法。",required:!1},"prepend-inner-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Creates a v-icon component in the prepend-inner slot.",description_zh:"在 prepend-inner 插槽中创建一个 v-icon 组件。",required:!1},readonly:{default:"null",value:"",type:"boolean",version:"",description:"Puts input in readonly state.",description_zh:"将输入置于只读状态。",required:!1},reverse:{default:"false",value:"",type:"boolean",version:"",description:"Reverses the orientation.",description_zh:"反转方向。",required:!1},rounded:{default:"undefined",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. Find more information on available border radius classes on the Border Radius page.",description_zh:"指定应用于组件的 border-radius。这可以是 0、xs、sm、true、lg、xl、pill、circle 和 shaped。在 Border Radius 页面上查找有关可用边界半径类的更多信息。",required:!1},rules:{default:"[]",value:"",type:"ValidationRule[]",version:"",description:"Accepts a mixed array of types function, boolean and string. Functions pass an input value as an argument and must return either true / false or a string containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) false or is a string.",description_zh:"接受 function、boolean 和 string 类型的混合数组。函数将输入值作为参数传递，并且必须返回 true / false 或包含错误消息的字符串。如果函数返回 （或数组中的任何值包含） false 或为字符串，则输入字段将进入错误状态。",required:!1},"show-size":{default:"false",value:"",type:"boolean | 1000 | 1024",version:"",description:"Sets the displayed size of selected file(s). When using true will default to 1000 displaying (kB, MB, GB) while 1024 will display (KiB, MiB, GiB).",description_zh:"设置所选文件的显示大小。当使用 true 时，将默认显示 1000 （kB， MB， GB），而 1024 将显示 （KiB， MiB， GiB）。",required:!1},"single-line":{default:"false",value:"",type:"boolean",version:"",description:"Label does not move on focus/dirty.",description_zh:"标签在聚焦/脏污时不移动。",required:!1},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},tile:{default:"false",value:"",type:"boolean",version:"",description:"Removes any applied border-radius from the component.",description_zh:"从组件中删除任何应用的 border-radius。",required:!1},"validate-on":{default:"undefined",value:"",type:" / blur / input / submit / invalid-input / blur lazy / input lazy / submit lazy / invalid-input lazy / blur eager / input eager / submit eager / invalid-input eager / lazy blur / lazy input / lazy submit / lazy invalid-input / eager blur / eager input / eager submit / eager invalid-input / lazy / eager",version:"",description:"Change what type of event triggers validation to run.",description_zh:"更改触发验证的事件类型以运行。",required:!1},"validation-value":{default:"undefined",value:"",type:"any",version:"",description:"The value used when applying validation rules.",description_zh:"应用验证规则时使用的值。",required:!1},variant:{default:"'filled'",value:"",type:" / underlined / outlined / filled / solo / solo-inverted / solo-filled / plain",version:"",description:"Applies a distinct style to the component.",description_zh:"将不同的样式应用于组件。",required:!1},width:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the width for the component.",description_zh:"设置组件的宽度。",required:!1}},link:"https://vuetifyjs.com/en/api/v-file-input/",link_zh:"https://vuetifyjs.com/en/api/v-file-input/",typeDetail:{},events:[{name:"click:append",description:"Emitted when append icon is clicked.",description_zh:"单击附加图标时发出。",params:"[MouseEvent]",value:""},{name:"click:appendInner",description:"Emitted when appended inner icon is clicked.",description_zh:"单击附加的内部图标时发出。",params:"[MouseEvent]",value:""},{name:"click:clear",description:"Emitted when clearable icon clicked.",description_zh:"单击可清除图标时发出。",params:"[MouseEvent]",value:""},{name:"click:control",description:"Emitted when the main input is clicked.",description_zh:"单击主输入时发出。",params:"[MouseEvent]",value:""},{name:"click:prepend",description:"Emitted when prepended icon is clicked.",description_zh:"单击前置图标时发出。",params:"[MouseEvent]",value:""},{name:"click:prependInner",description:"Emitted when prepended inner icon is clicked.",description_zh:"单击前置的内部图标时发出。",params:"[MouseEvent]",value:""},{name:"mousedown:control",description:"Event that is emitted when using mousedown on the main control area.",description_zh:"在主控制区域上使用 mousedown 时触发的事件。",params:"[MouseEvent]",value:""},{name:"update:focused",description:"Emitted when the input is focused or blurred",description_zh:"当输入聚焦或模糊时发出",params:"[boolean]",value:""},{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件的模型更改时发出的事件。",params:"[File | File[]]",value:""}],methods:[],slots:[{name:"append",description:"Adds an item inside the input and after input content.",description_zh:"在 input 内容内和 After input 内容中添加一个项目。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"append-inner",description:"Adds an item inside the input content.",description_zh:"在输入内容中添加项目。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n}"},{name:"clear",description:"Slot for custom clear icon (displayed when the clearable prop is equal to true).",description_zh:"自定义 clear 图标的插槽（当 clearable prop 等于 true 时显示）。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n} & { props: Record<string, any> }"},{name:"counter",description:"Slot for the input’s counter text.",description_zh:"输入的计数器文本的插槽。",params:""},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n} & {\n  props: Record<string, unknown>\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n}"},{name:"details",description:"Slot for custom input details to modifying the display of messages.",description_zh:"用于修改消息显示的自定义输入详细信息的插槽。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"label",description:"The default slot of the v-label or v-field-label component.",description_zh:"v-label 或 v-field-label 组件的默认插槽。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n} & { label: string; props: Record<string, any> }"},{name:"loader",description:"Slot for custom loader (displayed when loading prop is equal to true).",description_zh:"自定义加载器的插槽（当加载 prop 等于 true 时显示）。",params:"{ color: string; isActive: boolean }"},{name:"message",description:"Slot used to customize the message content.",description_zh:"用于自定义消息内容的插槽。",params:"{ message: string }"},{name:"prepend",description:"Adds an item outside the input and before input content.",description_zh:"在输入内容之外和之前添加项目。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"prepend-inner",description:"Slot that is prepended to the input.",description_zh:"Slot 添加到输入的前缀。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n}"},{name:"selection",description:"Slot for defining a custom appearance for selected item(s). Provides the current index, text (truncated) and file.",description_zh:"用于定义选定项目的自定义外观的插槽。提供当前索引、文本（截断）和文件。",params:"{\n  fileNames: string[]\n  totalBytes: number\n  totalBytesReadable: string\n}"}],exposed:[{name:"errorMessages",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string[]"},{name:"isValid",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"reset",description:"Resets the input value.",description_zh:"Resets the input value.",detail:"() => Promise<void>"},{name:"resetValidation",description:"Resets validation of the input without modifying its value.",description_zh:"Resets validation of the input without modifying its value.",detail:"() => Promise<void>"},{name:"validate",description:"Validates the input’s value.",description_zh:"Validates the input’s value.",detail:"(silent: boolean) => Promise<string[]>"}]},Me={name:"VFooter",props:{absolute:{default:"false",value:"",type:"boolean",description:"给组件应用 position: absolute",description_zh:"给组件应用 position: absolute"},app:{default:"false",value:"",type:"boolean",description:"Determines the position of the footer. If true, the footer would be given a fixed position at the bottom of the viewport. If false, the footer is set to the bottom of the page.",description_zh:"确定页脚的位置。如果为 true，则页脚将在视口底部指定一个固定位置。如果为 false，则页脚设置为页面底部。"},border:{default:"false",value:"",type:"string | number | boolean",description:"Apply a border style to the component.",description_zh:"应用边框样式到组件。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},elevation:{default:"undefined",value:"",type:"string | number",description:"The elevation of the component is acceptable from 0 to 24. You can read more on the Elevation page.",description_zh:"组件的海拔可接受 0 到 24 之间的值。你可以在 elevation page 浏览更多信息。"},height:{default:"auto",value:"",type:"string | number",description:"Sets the height of the component.",description_zh:"设定组件的高度。"},name:{default:"undefined",value:"",type:"string",description:"Assign a specific name for layout registration.",description_zh:"为布局注册指定特定名称。"},order:{default:"0",value:"",type:"string | number",description:"Adjust the order of the component in relation to its registration order.",description_zh:"根据组件的注册顺序调整组件的顺序。"},rounded:{default:"undefined",value:"",type:"string | number | boolean",description:"Applies the border-radius style to the specified component. You can get more information about this on the Corner Radius of Borders page",description_zh:"对指定的组件应用 border-radius 样式。您可以在 边框的圆角半径页面 获取更多有关信息"},tag:{default:"footer",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-footer/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-footer/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},_t={name:"VForm",props:{disabled:{default:"false",value:"",type:"boolean",version:"",description:"Puts all children inputs into a disabled state.",description_zh:"将所有子项输入置于禁用状态。",required:!1},"fast-fail":{default:"false",value:"",type:"boolean",version:"",description:"Stop validation as soon as any rules fail.",description_zh:"一旦任何规则失败，就立即停止验证。",required:!1},":v-model":{default:"null",value:"",type:"boolean",version:"",description:"The value representing the validity of the form. If the value is null then no validation has taken place yet, or the form has been reset. Otherwise the value will be a boolean that indicates if validation has passed or not.",description_zh:"表示表单有效性的值。如果值为 null，则尚未进行验证，或者表单已重置。否则，该值将是一个布尔值，指示验证是否通过。",required:!0},readonly:{default:"false",value:"",type:"boolean",version:"",description:"Puts all children inputs into a readonly state.",description_zh:"将所有子项输入置于只读状态。",required:!1},"validate-on":{default:"'input'",value:"",type:" / blur / input / submit / invalid-input / blur lazy / input lazy / submit lazy / invalid-input lazy / blur eager / input eager / submit eager / invalid-input eager / lazy blur / lazy input / lazy submit / lazy invalid-input / eager blur / eager input / eager submit / eager invalid-input / lazy / eager",version:"",description:"Changes the events in which validation occurs.",description_zh:"更改发生验证的事件。",required:!1}},link:"https://vuetifyjs.com/en/api/v-form/",link_zh:"https://vuetifyjs.com/en/api/v-form/",typeDetail:{},events:[{name:"submit",description:"Emitted when form is submitted.",description_zh:"提交表单时发出。",params:"[SubmitEventPromise]",value:""},{name:"update:modelValue",description:"Event emitted when the form’s validity changes.",description_zh:"表单有效性更改时发出的事件。",params:"[boolean]",value:""}],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{\n  errors: Ref<{ id: string | number; errorMessages: string[] }[]>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isValidating: ShallowRef<boolean>\n  isValid: Ref<boolean | null> & { externalValue: boolean }\n  items: Ref<\n    {\n      id: string | number\n      validate: () => Promise<string[]>\n      reset: () => Promise<void>\n      resetValidation: () => Promise<void>\n      vm: Raw<ComponentInternalInstance>\n      isValid: boolean | null\n      errorMessages: string[]\n    }[]\n  >\n  validate: () => Promise<{\n    valid: boolean\n    errors: { id: string | number; errorMessages: string[] }[]\n  }>\n  reset: () => void\n  resetValidation: () => void\n}"}],exposed:[{name:"errors",description:"Contains all current form input errors.",description_zh:"Contains all current form input errors.",detail:"{ id: string | number; errorMessages: string[] }[]"},{name:"isDisabled",description:"Indicates if form is disabled or not.",description_zh:"Indicates if form is disabled or not.",detail:"boolean"},{name:"isReadonly",description:"Indicates if form is readonly or not.",description_zh:"Indicates if form is readonly or not.",detail:"boolean"},{name:"isValid",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"isValidating",description:"Indicates if form is currently being validated or not.",description_zh:"Indicates if form is currently being validated or not.",detail:"boolean"},{name:"items",description:"Array of all registered inputs.",description_zh:"Array of all registered inputs.",detail:"{\n  id: string | number\n  validate: () => Promise<string[]>\n  reset: () => Promise<void>\n  resetValidation: () => Promise<void>\n  vm: Raw<ComponentInternalInstance>\n  isValid: boolean | null\n  errorMessages: string[]\n}[]"},{name:"reset",description:"Resets validation of all registered inputs, and clears their values.",description_zh:"Resets validation of all registered inputs, and clears their values.",detail:"() => void"},{name:"resetValidation",description:"Resets validation of all registered inputs without modifying their values.",description_zh:"Resets validation of all registered inputs without modifying their values.",detail:"() => void"},{name:"validate",description:"Validates all registered inputs.",description_zh:"Validates all registered inputs.",detail:"() => Promise<{\n  valid: boolean\n  errors: { id: string | number; errorMessages: string[] }[]\n}>"}]},wt={name:"VHover",props:{"close-delay":{default:"undefined",value:"",type:"string | number",description:"The number of milliseconds to wait before the component shuts down. Applies only to hover and focus events.",description_zh:"组件关闭前等待的毫秒数。仅应用于悬停和焦点事件。"},disabled:{default:"false",value:"",type:"boolean",description:"Removes hover functionality.",description_zh:"删除悬停功能。"},":v-model":{default:"undefined",value:"",type:"boolean",description:"The value of the component v-mode. If the component supports variants, the default is an empty array.",description_zh:"组件 v-mode 的值。如果组件支持多属性，默认为空数组。"},"open-delay":{default:"undefined",value:"",type:"string | number",description:"The number of milliseconds that the component waits before opening. Applies only to hover and focus events.",description_zh:"组件打开前等待的毫秒数。仅应用于悬停和焦点事件。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-hover/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-hover/#links",typeDetail:{},events:[{name:"update:modelValue",description:"An event that is raised when a component's model-value changes.",description_zh:"当组件的 model-value 更改时引发的事件。",params:"[boolean]",value:""}],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{ isHovering: boolean; props: Record<string, unknown> }"}]},Tt={name:"VIcon",props:{color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},end:{default:"false",value:"",type:"boolean",description:"Treat it as the last button and add a margin left margin to it.",description_zh:"视为最后一个按钮并为其添加左边距 margin 。"},icon:{default:"undefined",value:"",type:"any",description:"Assign a v-icon icon to the button.",description_zh:"为按钮指定一个 v-icon 图标。",required:!0},size:{default:"default",value:"",type:"string | number",description:"Set the height and width of the component. The default unit is px. You can also use the following predefined sizes: x-small, small, default, large, and x-large.",description_zh:"设置组件的高度和宽度。默认单位是px。也可以使用以下预定义的大小：x-small、small、default、large和x-large。"},start:{default:"false",value:"",type:"boolean",description:"Treat the first button as having a margin with a right margin added to it.",description_zh:"视为第一个按钮并未其添加右边距 margin 。"},tag:{default:"i",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-icon/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-icon/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},Nt={name:"VImg",props:{absolute:{default:"false",value:"",type:"boolean",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},alt:{default:"undefined",value:"",type:"string",version:"",description:"Alternate text for screen readers. Leave empty for decorative images.",description_zh:"屏幕阅读器的替换文本。对于装饰性图像，请留空。",required:!1},"aspect-ratio":{default:"undefined",value:"",type:"string | number",version:"",description:"Calculated as width/height, so for a 1920x1080px image this will be 1.7778. Will be calculated automatically if omitted.",description_zh:"以宽度/高度计算，因此对于 1920x1080 像素的图像，这将是 1.7778。如果省略，将自动计算。",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},"content-class":{default:"undefined",value:"",type:"any",version:"",description:"Apply a custom class to the internal content element.",description_zh:"将自定义类应用于 internal content 元素。",required:!1},cover:{default:"false",value:"",type:"boolean",version:"",description:"Resizes the background image to cover the entire container.",description_zh:"调整背景图像的大小以覆盖整个容器。",required:!1},crossorigin:{default:"undefined",value:"",type:" / anonymous / use-credentials",version:"",description:"Specify that images should be fetched with CORS enabled MDN",description_zh:"指定应在启用 CORS 的 MDN 下获取图像",required:!1},draggable:{default:"undefined",value:"",type:"boolean / true / false",version:"",description:"Controls the draggable behavior of the image. See MDN.",description_zh:"控制图像的可拖动行为。请参阅 MDN。",required:!1},eager:{default:"false",value:"",type:"boolean",version:"",description:"Forces the component’s content to render when it mounts. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO.",description_zh:"强制组件的内容在挂载时呈现。如果您的内容不会在 DOM 中呈现，并且您希望为 SEO 抓取，这将非常有用。",required:!1},gradient:{default:"undefined",value:"",type:"string",version:"",description:"The gradient to apply to the image. Only supports linear-gradient syntax, anything else should be done with classes.",description_zh:"要应用于图像的渐变。仅支持线性渐变语法，其他任何事情都应该用 class 来完成。",required:!1},height:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the height for the component.",description_zh:"设置组件的高度。",required:!1},inline:{default:"false",value:"",type:"boolean",version:"",description:"Display as an inline element instead of a block, also disables flex-grow.",description_zh:"Display as a inline element 而不是 block，也会禁用 flex-grow。",required:!1},"lazy-src":{default:"undefined",value:"",type:"string",version:"",description:"Something to show while waiting for the main image to load, typically a small base64-encoded thumbnail. Has a slight blur filter applied. NOTE: This prop has no effect unless either height or aspect-ratio are provided.",description_zh:"在等待主图像加载时要显示的内容，通常是 base64 编码的小缩略图。应用了轻微的模糊滤镜。注意： 除非提供 height 或 aspect-ratio，否则此 prop 无效。",required:!1},"max-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum height for the component.",description_zh:"设置组件的最大高度。",required:!1},"max-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。",required:!1},"min-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum height for the component.",description_zh:"设置组件的最小高度。",required:!1},"min-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum width for the component.",description_zh:"设置组件的最小宽度。",required:!1},options:{default:"{\n  root: undefined,\n  rootMargin: undefined,\n  threshold: undefined\n}",value:"",type:"IntersectionObserverInit",version:"",description:"Options that are passed to the Intersection observer constructor.",description_zh:"传递给 Intersection observer 构造函数的选项。",required:!1},position:{default:"undefined",value:"",type:"string",version:"",description:"Applies object-position styles to the image and placeholder elements.",description_zh:"将对象位置样式应用于图像和占位符元素。",required:!1},referrerpolicy:{default:"undefined",value:"",type:" / no-referrer / no-referrer-when-downgrade / origin / origin-when-cross-origin / same-origin / strict-origin / strict-origin-when-cross-origin / unsafe-url",version:"",description:"Define which referrer is sent when fetching the resource MDN",description_zh:"定义在获取资源 MDN 时发送的反向链接",required:!1},rounded:{default:"undefined",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. Find more information on available border radius classes on the Border Radius page.",description_zh:"指定应用于组件的 border-radius。这可以是 0、xs、sm、true、lg、xl、pill、circle 和 shaped。在 Border Radius 页面上查找有关可用边界半径类的更多信息。",required:!1},sizes:{default:"undefined",value:"",type:"string",version:"",description:"For use with srcset, see MDN.",description_zh:"有关与 srcset 一起使用的信息，请参阅 MDN。",required:!1},src:{default:"",value:"",type:"  | string  | { src: string; srcset: string; lazySrc: string; aspect: number }",version:"",description:"The image URL. This prop is mandatory.",description_zh:"图像 URL。此 prop 是强制性的。",required:!0},srcset:{default:"undefined",value:"",type:"string",version:"",description:"A set of alternate images to use based on device size. Read more….",description_zh:"根据设备大小使用的一组备用映像。阅读更多....",required:!1},tile:{default:"false",value:"",type:"boolean",version:"",description:"Removes any applied border-radius from the component.",description_zh:"从组件中删除任何应用的 border-radius。",required:!1},transition:{default:"'fade-transition'",value:"",type:"string | boolean | (TransitionProps & { component: Component })",version:"",description:"The transition to use when switching from lazy-src to src. Can be one of the built in or custom transition.",description_zh:"从 lazy-src 切换到 src 时要使用的过渡。可以是内置或自定义过渡之一。",required:!1},width:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the width for the component.",description_zh:"设置组件的宽度。",required:!1}},link:"https://vuetifyjs.com/en/api/v-img/",link_zh:"https://vuetifyjs.com/en/api/v-img/",typeDetail:{},events:[{name:"error",description:"Emitted if the image fails to load.",description_zh:"如果图像加载失败，则发出。",params:"[string]",value:""},{name:"load",description:"Emitted when the image is loaded.",description_zh:"加载图像时发出。",params:"[string]",value:""},{name:"loadstart",description:"Emitted when the image starts to load.",description_zh:"在映像开始加载时发出。",params:"[string]",value:""}],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。"},{name:"error",description:"Will be shown if the image fails to load, replacing the placeholder slot.",description_zh:"如果图像加载失败，则会显示，替换占位符槽。"},{name:"placeholder",description:"Display an overlay while the image is loading.",description_zh:"在加载图像时显示叠加层。"},{name:"sources",description:"A list of <source> elements. If this slot is used v-img will render a <picture> instead of <img>.",description_zh:"<source> 元素列表。如果使用此插槽，v-img 将呈现 a <picture> 而不是 <img>。"}],exposed:[{name:"currentSrc",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"image",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"HTMLImageElement"},{name:"naturalHeight",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"number"},{name:"naturalWidth",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"number"},{name:"state",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"'error' | 'idle' | 'loading' | 'loaded'"}]},H={name:"VInfiniteScroll",props:{color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},direction:{default:"vertical",value:"",type:"vertical / horizontal",description:"Specifies if scroller is vertical or horizontal.",description_zh:"指定滚动条是垂直的还是水平的。"},"empty-text":{default:"$vuetify.infiniteScroll.empty",value:"",type:"string",description:"Text shown when there is no more content to load.",description_zh:"当没有更多内容要加载时显示的文本。"},":height":{default:"undefined",value:"",type:"string | number",description:"Sets the height of the component.",description_zh:"设定组件的高度。",required:!0},"load-more-text":{default:"$vuetify.infiniteScroll.loadMore",value:"",type:"string",description:"Text shown in default load more button, when in manual mode.",description_zh:"在手动模式下，默认加载更多按钮中显示的文本。"},margin:{default:"undefined",value:"",type:"string | number",description:"Value sent to the intersection observer. Will make the observer trigger earlier, by the margin (px) value supplied.",description_zh:"发送到交叉点观察点的值。将使观察者通过提供的边距 （px） 值更早触发。"},"max-height":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum height of the component.",description_zh:"设定组件的最大高度。"},"max-width":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum width of the component.",description_zh:"设定组件的最大宽度。"},"min-height":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum height of the component.",description_zh:"设定组件的最小高度。"},"min-width":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum width of the component.",description_zh:"设定组件的最小宽度。"},mode:{default:"intersect",value:"",type:"intersect / manual",description:"Specifies if content should load automatically when scrolling (intersect) or manually (manual).",description_zh:"指定内容是在滚动（相交）时自动加载还是手动加载（手动）。"},side:{default:"end",value:"",type:"start / end / both",description:"Specifies the side where new content should appear. Either the start, end, or both sides.",description_zh:"指定应显示新内容的一侧。开始、结束或两侧。"},tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"},width:{default:"undefined",value:"",type:"string | number",description:"Sets the width of the component.",description_zh:"设定组件的宽度。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-infinite-scroll/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-infinite-scroll/#links",typeDetail:{},events:[{name:"load",description:"Emitted when reaching the start / end threshold, or if triggered when using manual mode.",description_zh:"达到开始/结束阈值时发出，或使用手动模式时触发。",params:"[  {    side: 'start' | 'end' | 'both'    done: (status: 'loading' | 'error' | 'empty' | 'ok') => void  },]",value:""}],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:""},{name:"empty",description:"Shown when load returned status ‘empty’.",description_zh:"当加载返回状态 'empty' 时显示。",params:"{ side: 'start' | 'end' | 'both'; props: Record<string, any> }"},{name:"error",description:"Shown when load returned status ‘error’.",description_zh:"当加载返回状态“错误”时显示。",params:"{ side: 'start' | 'end' | 'both'; props: Record<string, any> }"},{name:"load-more",description:"Shown when scrolled to either side of the content, in manual mode.",description_zh:"在手动模式下滚动到内容的任一侧时显示。",params:"{ side: 'start' | 'end' | 'both'; props: Record<string, any> }"},{name:"loading",description:"Shown when content is loading.",description_zh:"在加载内容时显示。",params:"{ side: 'start' | 'end' | 'both'; props: Record<string, any> }"}]},Ct={name:"VInput",props:{"append-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Creates a v-icon component after default content in the append slot.",description_zh:"在附加插槽中的默认内容之后创建一个 v 图标组件。",required:!1},"center-affix":{default:"true",value:"",type:"boolean",version:"",description:"Vertically align appendInner, prependInner, clearIcon and label in the center.",description_zh:"将 appendInner、prependInner、clearIcon 和 label 垂直对齐在中心。",required:!1},density:{default:"'default'",value:"",type:"default / comfortable / compact",version:"",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。",required:!1},direction:{default:"'horizontal'",value:"",type:"horizontal / vertical",version:"",description:"Changes the direction of the input.",description_zh:"更改输入的方向。",required:!1},disabled:{default:"null",value:"",type:"boolean",version:"",description:"Removes the ability to click or target the component.",description_zh:"删除单击组件或定位组件的功能。",required:!1},error:{default:"false",value:"",type:"boolean",version:"",description:"Puts the input in a manual error state.",description_zh:"将输入置于手动错误状态。",required:!1},"error-messages":{default:"[]",value:"",type:"string | string[]",version:"",description:"Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the rules prop. This field will not trigger validation.",description_zh:"将输入置于错误状态并传递自定义错误消息。将与 rules prop 发生的任何验证相结合。此字段不会触发验证。",required:!1},focused:{default:"false",value:"",type:"boolean",version:"",description:"Forces a focused state styling on the component.",description_zh:"强制对组件进行 focused state 样式设置。",required:!1},"hide-details":{default:"false",value:"",type:"boolean / auto",version:"",description:"Hides hint and validation errors. When set to auto messages will be rendered only if there’s a message (hint, error message, counter value etc) to display.",description_zh:"隐藏提示和验证错误。当设置为 auto 时，仅当有消息 （提示、错误消息、计数器值等） 要显示时，才会呈现消息。",required:!1},"hide-spin-buttons":{default:"false",value:"",type:"boolean",version:"",description:"Hides spin buttons on the input when type is set to number.",description_zh:"当 type 设置为 number 时，隐藏输入上的旋转按钮。",required:!1},hint:{default:"undefined",value:"",type:"string",version:"",description:"Displays hint text below the input when focused. Force this always open with the persistent-hint property.",description_zh:"聚焦时，在输入下方显示提示文本。使用 persistent-hint 属性强制 this always 打开。",required:!1},id:{default:"undefined",value:"",type:"string",version:"",description:"Sets the DOM id on the component.",description_zh:"设置组件上的 DOM ID。",required:!1},label:{default:"undefined",value:"",type:"string",version:"",description:"Sets the text of the v-label or v-field-label component.",description_zh:"设置 v-label 或 v-field-label 组件的文本。",required:!1},"max-errors":{default:"1",value:"",type:"string | number",version:"",description:"Control the maximum number of shown errors from validation.",description_zh:"控制验证时显示的错误的最大数量。",required:!1},"max-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。",required:!1},":messages":{default:"[]",value:"",type:"string | string[]",version:"",description:"Displays a list of messages or a single message if using a string.",description_zh:"显示消息列表，如果使用字符串，则显示单个消息。",required:!0},"min-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum width for the component.",description_zh:"设置组件的最小宽度。",required:!1},"v-model":{default:"undefined",value:"",type:"unknown",version:"",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v-model 值。如果 component 支持 multiple prop，则默认为空数组。",required:!1},name:{default:"undefined",value:"",type:"string",version:"",description:"Sets the component’s name attribute.",description_zh:"设置组件的 name 属性。",required:!1},"persistent-hint":{default:"false",value:"",type:"boolean",version:"",description:"Forces hint to always be visible.",description_zh:"强制提示始终可见。",required:!1},"prepend-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Prepends an icon to the component, uses the same syntax as v-icon.",description_zh:"在组件前面加上一个图标，使用与 v-icon 相同的语法。",required:!1},readonly:{default:"null",value:"",type:"boolean",version:"",description:"Puts input in readonly state.",description_zh:"将输入置于只读状态。",required:!1},rules:{default:"[]",value:"",type:"ValidationRule[]",version:"",description:"Accepts a mixed array of types function, boolean and string. Functions pass an input value as an argument and must return either true / false or a string containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) false or is a string.",description_zh:"接受 function、boolean 和 string 类型的混合数组。函数将输入值作为参数传递，并且必须返回 true / false 或包含错误消息的字符串。如果函数返回 （或数组中的任何值包含） false 或为字符串，则输入字段将进入错误状态。",required:!1},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},"validate-on":{default:"undefined",value:"",type:" / blur / input / submit / invalid-input / blur lazy / input lazy / submit lazy / invalid-input lazy / blur eager / input eager / submit eager / invalid-input eager / lazy blur / lazy input / lazy submit / lazy invalid-input / eager blur / eager input / eager submit / eager invalid-input / lazy / eager",version:"",description:"Change what type of event triggers validation to run.",description_zh:"更改触发验证的事件类型以运行。",required:!1},"validation-value":{default:"undefined",value:"",type:"any",version:"",description:"The value used when applying validation rules.",description_zh:"应用验证规则时使用的值。",required:!1},width:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the width for the component.",description_zh:"设置组件的宽度。",required:!1}},link:"https://vuetifyjs.com/en/api/v-input/",link_zh:"https://vuetifyjs.com/en/api/v-input/",typeDetail:{},events:[{name:"click:append",description:"Emitted when appended icon is clicked.",description_zh:"单击附加图标时发出。",params:"[MouseEvent]",value:""},{name:"click:prepend",description:"Emitted when prepended icon is clicked.",description_zh:"单击前置图标时发出。",params:"[MouseEvent]",value:""},{name:"update:focused",description:"Event that is emitted when the component’s focus state changes.",description_zh:"组件的焦点状态更改时发出的事件。",params:"[boolean]",value:""},{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件的模型更改时发出的事件。",params:"[unknown]",value:""}],methods:[],slots:[{name:"append",description:"Adds an item inside the input and after input content.",description_zh:"在 input 内容内和 After input 内容中添加一个项目。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"details",description:"Slot for custom input details to modifying the display of messages.",description_zh:"用于修改消息显示的自定义输入详细信息的插槽。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"message",description:"Slot used to customize the message content.",description_zh:"用于自定义消息内容的插槽。",params:"{ message: string }"},{name:"prepend",description:"Adds an item outside the input and before input content.",description_zh:"在输入内容之外和之前添加项目。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"}],exposed:[{name:"errorMessages",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string[]"},{name:"isValid",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"reset",description:"Resets the input value.",description_zh:"Resets the input value.",detail:"() => Promise<void>"},{name:"resetValidation",description:"Resets validation of the input without modifying its value.",description_zh:"Resets validation of the input without modifying its value.",detail:"() => Promise<void>"},{name:"validate",description:"Validates the input’s value.",description_zh:"Validates the input’s value.",detail:"(silent: boolean) => Promise<string[]>"}]},Dt={name:"VItem",props:{disabled:{default:"false",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},"selected-class":{default:"undefined",value:"",type:"string",description:"Configure the name of the CSS class that will be applied when the selected item is selected.",description_zh:"配置被选中项目时应用的 CSS 类名。"},value:{default:"undefined",value:"",type:"any",description:"The value used when selecting a component in a group. If not provided, a unique ID is used.",description_zh:"在组中选择组件时使用的值。如果没有提供，则使用唯一 ID。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-item/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-item/#links",typeDetail:{},events:[{name:"group:selected",description:"Event that is emitted when an item is selected within a group.",description_zh:"在组中选择项目时发出的事件。",params:"[{ value: boolean }]",value:""}],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{\n  isSelected: boolean\n  selectedClass: boolean | string[]\n  select: (value: boolean) => void\n  toggle: () => void\n  value: unknown\n  disabled: boolean\n}"}]},kt={name:"VItemGroup",props:{disabled:{default:"false",value:"",type:"boolean",description:"Set all child components to a disabled state.",description_zh:"将所有子组件设置为禁用状态。"},mandatory:{default:"false",value:"",type:"true / false / force",description:"Force at least one item to be selected, if available.",description_zh:"强制至少选择一个项目（如果可用）。"},":max":{default:"undefined",value:"",type:"number",description:"Set the maximum number that can be selected.",description_zh:"设置可以选择的最大数量。"},":v-model":{default:"undefined",value:"",type:"unknown",description:"The value of the component v-mode. If the component supports variants, the default is an empty array.",description_zh:"组件 v-mode 的值。如果组件支持多属性，默认为空数组。"},multiple:{default:"false",value:"",type:"boolean",description:"Allows you to select multiple options.",description_zh:"允许您选择多个选项。"},"selected-class":{default:"v-item--selected",value:"",type:"string",description:"Configure the selected CSS class. This class will be available within the V-Item default scope slot.",description_zh:"配置选中的 CSS 类。此类将在 v-item 默认作用域插槽内可用。"},tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-item-group/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-item-group/#links",typeDetail:{},events:[{name:"update:modelValue",description:"An event that is raised when a component's model-value changes.",description_zh:"当组件的 model-value 更改时引发的事件。",params:"[unknown]",value:""}],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{\n  isSelected: (id: number) => boolean\n  select: (id: number, value: boolean) => void\n  next: () => void\n  prev: () => void\n  selected: number[]\n}"}],suggestions:["v-item"]},F={name:"VKbd",props:{tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-kbd/#props",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-kbd/#props",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},j={name:"VLabel",props:{text:{default:"undefined",value:"",type:"string",description:"Sets the content text of the component.",description_zh:"设置组件的内容文本。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-label/#props",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-label/#props",typeDetail:{},events:[{name:"click",description:"Event that is emitted when the component is clicked.",description_zh:"单击组件时发出的事件。",params:"[MouseEvent]",value:""}],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},$={name:"VLayout",props:{"full-height":{default:"false",value:"",type:"boolean",description:"Sets the component height to 100%.",description_zh:"将元件高度设置为 100%。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-layout/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-layout/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},B={name:"VLayoutItem",props:{absolute:{default:"false",value:"",type:"boolean",description:"给组件应用 position: absolute",description_zh:"给组件应用 position: absolute"},":v-model":{default:"false",value:"",type:"boolean",description:"The value of the component v-mode. If the component supports variants, the default is an empty array.",description_zh:"组件 v-mode 的值。如果组件支持多属性，默认为空数组。"},name:{default:"undefined",value:"",type:"string",description:"Assign a specific name for layout registration.",description_zh:"为布局注册指定特定名称。"},order:{default:"0",value:"",type:"string | number",description:"Adjust the order of the component in relation to its registration order.",description_zh:"根据组件的注册顺序调整组件的顺序。"},position:{default:"undefined",value:"",type:"top / right / bottom / left",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"},size:{default:"300",value:"",type:"string | number",description:"Set the height and width of the component.",description_zh:"设置组件的高度和宽度."}},link:"https://vuetifyjs.com/zh-Hans/api/v-layout-item/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-layout-item/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},xt={name:"VLazy",props:{height:{default:"undefined",value:"",type:"string | number",description:"Sets the height of the component.",description_zh:"设定组件的高度。"},"max-height":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum height of the component.",description_zh:"设定组件的最大高度。"},"max-width":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum width of the component.",description_zh:"设定组件的最大宽度。"},"min-height":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum height of the component.",description_zh:"设定组件的最小高度。"},"min-width":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum width of the component.",description_zh:"设定组件的最小宽度。"},":v-model":{default:"false",value:"",type:"boolean",description:"The value of the component v-mode. If the component supports variants, the default is an empty array.",description_zh:"组件 v-mode 的值。如果组件支持多属性，默认为空数组。"},options:{default:"{\n  root: undefined,\n  rootMargin: undefined,\n  threshold: undefined\n}",value:"",type:"IntersectionObserverInit",description:"传递给 Intersection observer 构造函数的选项。",description_zh:"传递给 Intersection observer 构造函数的选项。"},tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"},transition:{default:"fade-transition",value:"",type:"string | boolean | (TransitionProps & { component: Component })",description:"Sets the component transition. Can be one of the built in or custom transition.",description_zh:"设置组件过渡。可以是内置过渡或自定义过渡之一。"},width:{default:"undefined",value:"",type:"string | number",description:"Sets the width of the component.",description_zh:"设定组件的宽度。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-lazy/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-lazy/#links",typeDetail:{},events:[{name:"update:modelValue",description:"An event that is raised when a component's model-value changes.",description_zh:"当组件的 model-value 更改时引发的事件。",params:"[boolean]",value:""}],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},L={name:"VLigatureIcon",props:{icon:{default:"undefined",value:"",type:"any",description:"Assign a v-icon icon to the button.",description_zh:"为按钮指定一个 v-icon 图标。"},tag:{default:"undefined",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-ligature-icon/#props",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-ligature-icon/#props",typeDetail:{},events:[],methods:[],slots:[]},Rt={name:"VList",props:{activatable:{default:"false",value:"",type:"boolean",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},activated:{default:"undefined",value:"",type:"any",version:"",description:"Array of ids of activated nodes.",description_zh:"已激活节点的 ID 数组。",required:!1},"active-class":{default:"undefined",value:"",type:"string",version:"",description:"The class applied to the component when it is in an active state.",description_zh:"当组件处于活动状态时应用于组件的类。",required:!1},"active-color":{default:"undefined",value:"",type:"string",version:"",description:"The applied color when the component is in an active state.",description_zh:"组件处于活动状态时应用的颜色。",required:!1},"active-strategy":{default:"undefined",value:"",type:"  | 'single-leaf'  | 'leaf'  | 'independent'  | 'single-independent'  | ActiveStrategy  | ((mandatory: boolean) => ActiveStrategy)",version:"",description:"Affects how items with children behave when activated.leaf: Only leaf nodes (items without children) can be activated.independent: All nodes can be activated whether they have children or not.classic: Activating a parent node will cause all children to be activated.",description_zh:"影响具有子项的项目在激活时的行为方式。leaf：只能激活叶节点（没有子项的项目）。independent：无论它们是否具有子节点，都可以激活所有节点。classic：激活父节点将导致激活所有子节点。",required:!1},"base-color":{default:"undefined",value:"",type:"string",version:"",description:"Sets the color of component when not focused.",description_zh:"设置未聚焦时组件的颜色。",required:!1},"bg-color":{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control’s background. Used on components that also support the color prop. - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件的背景。用于也支持 color 属性的组件。- 支持实用工具颜色（例如 Success 或 Purple）或 CSS 颜色（#033 或 RGBA（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},border:{default:"false",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be xs, sm, md, lg, xl.",description_zh:"指定应用于组件的 border-radius。这可以是 xs、sm、md、lg、xl。",required:!1},"collapse-icon":{default:"undefined",value:"",type:"string",version:"",description:"Icon to display when the list item is expanded.",description_zh:"展开列表项时显示的图标。",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},density:{default:"'default'",value:"",type:"default / comfortable / compact",version:"",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。",required:!1},disabled:{default:"false",value:"",type:"boolean",version:"",description:"Puts all children inputs into a disabled state.",description_zh:"将所有子项输入置于禁用状态。",required:!1},elevation:{default:"undefined",value:"",type:"string | number",version:"",description:"Designates an elevation applied to the component between 0 and 24. You can find more information on the elevation page.",description_zh:"指定应用于组件的 0 到 24 之间的高程。您可以在海拔页面上找到更多信息。",required:!1},"expand-icon":{default:"undefined",value:"",type:"string",version:"",description:"Icon to display when the list item is collapsed.",description_zh:"折叠列表项时显示的图标。",required:!1},height:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the height for the component.",description_zh:"设置组件的高度。",required:!1},"item-children":{default:"'children'",value:"",type:"SelectItemKey<any>",version:"",description:"Property on supplied items that contains its children.",description_zh:"包含其子项的 supplied items 上的属性。",required:!1},"item-props":{default:"'props'",value:"",type:"SelectItemKey<any>",version:"",description:"Props object that will be applied to each item component. true will treat the original object as raw props and pass it directly to the component.",description_zh:"Props 对象。true 会将原始对象视为 raw props 并将其直接传递给组件。",required:!1},items:{default:"[]",value:"",type:"any[]",version:"",description:"Can be an array of objects or strings. By default objects should have a title property, and can optionally have a props property containing any VListItem props, a value property to allow selection, and a children property containing more item objects. Keys to use for these can be changed with the item-title, item-value, item-props, and item-children props.",description_zh:"可以是对象或字符串的数组。默认情况下，对象应该具有 title 属性，并且可以选择具有包含任何 VListItem props 的 props 属性、允许选择的 value 属性以及包含更多 item 对象的 children 属性。用于这些的键可以通过 item-title、item-value、item-props 和 item-children 属性来更改。",required:!1},"item-title":{default:"'title'",value:"",type:"SelectItemKey<any>",version:"",description:"Property on supplied items that contains its title.",description_zh:"包含其标题的所提供项上的属性。",required:!1},"item-type":{default:"'type'",value:"",type:"string",version:"",description:"Designates the key on the supplied items that is used for determining the nodes type.",description_zh:"在提供的项上指定用于确定节点类型的键。",required:!1},"item-value":{default:"'value'",value:"",type:"SelectItemKey<any>",version:"",description:"Property on supplied items that contains its value.",description_zh:"包含其值的 supplied items 上的属性。",required:!1},lines:{default:"'one'",value:"",type:"false / one / two / three",version:"",description:"Designates a minimum-height for all children v-list-item components. This prop uses line-clamp and is not supported in all browsers.",description_zh:"为所有子 v-list-item 组件指定 minimum-height。这个 prop 使用 line-clamp，并不是所有浏览器都支持。",required:!1},mandatory:{default:"false",value:"",type:"boolean",version:"",description:"Forces at least one item to always be selected (if available).",description_zh:"强制始终选择至少一个项目（如果可用）。",required:!1},"max-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum height for the component.",description_zh:"设置组件的最大高度。",required:!1},"max-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。",required:!1},"min-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum height for the component.",description_zh:"设置组件的最小高度。",required:!1},"min-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum width for the component.",description_zh:"设置组件的最小宽度。",required:!1},nav:{default:"false",value:"",type:"boolean",version:"",description:"An alternative styling that reduces v-list-item width and rounds the corners. Typically used with v-navigation-drawer.",description_zh:"一种替代样式，用于减小 v-list-item 宽度并使角变圆。通常与 v-navigation-drawer 一起使用。",required:!1},opened:{default:"undefined",value:"",type:"unknown",version:"",description:"An array containing the values of currently opened groups. Can be two-way bound with v-model:opened.",description_zh:"包含当前打开的组值的数组。可以用 v-model：opened 进行双向绑定。",required:!1},"open-strategy":{default:"'list'",value:"",type:"single / multiple / list / OpenStrategy",version:"",description:"Affects how items with children behave when expanded.multiple: Any number of groups can be open at once.single: Only one group at each level can be open, opening a group will cause others to close.list: Multiple, but all other groups will close when an item is selected.",description_zh:"影响具有子项的项目在展开时的行为方式。multiple：一次可以打开任意数量的组。single：每个级别只能打开一个组，打开一个组将导致其他组关闭。list：多个，但所有其他组将在选择项目时关闭。",required:!1},"return-object":{default:"false",value:"",type:"boolean",version:"",description:"Changes the selection behavior to return the object directly rather than the value specified with item-value.",description_zh:"更改选择行为以直接返回对象，而不是使用 item-value 指定的值。",required:!1},rounded:{default:"undefined",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. Find more information on available border radius classes on the Border Radius page.",description_zh:"指定应用于组件的 border-radius。这可以是 0、xs、sm、true、lg、xl、pill、circle 和 shaped。在 Border Radius 页面上查找有关可用边界半径类的更多信息。",required:!1},selectable:{default:"false",value:"",type:"boolean",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},selected:{default:"undefined",value:"",type:"unknown",version:"",description:"An array containing the values of currently selected items. Can be two-way bound with v-model:selected.",description_zh:"包含当前选定项的值的数组。可以与 v-model：selected 进行双向绑定。",required:!1},"select-strategy":{default:"'single-leaf'",value:"",type:"  | 'single-leaf'  | 'leaf'  | 'independent'  | 'single-independent'  | 'classic'  | SelectStrategy  | ((mandatory: boolean) => SelectStrategy)",version:"",description:"Affects how items with children behave when selected.leaf: Only leaf nodes (items without children) can be selected.independent: All nodes can be selected whether they have children or not.classic: Selecting a parent node will cause all children to be selected, parent nodes will be displayed as selected if all their descendants are selected. Only leaf nodes will be added to the model.",description_zh:"影响具有子项的项目在选中时的行为方式。leaf：只能选择叶节点（没有子项的项目）。independent：可以选择所有节点，无论它们是否具有子节点。classic：选择父节点将导致选择所有子节点，如果父节点的所有后代都被选中，则父节点将显示为已选中。只有叶节点将添加到模型中。",required:!1},slim:{default:"false",value:"",type:"boolean",version:"",description:"Reduces horizontal spacing for badges, icons, tooltips, and avatars within slim list items to create a more compact visual representation.",description_zh:"减少细长列表项中徽章、图标、工具提示和头像的水平间距，以创建更紧凑的视觉表示形式。",required:!1},tag:{default:"'div'",value:"",type:"string",version:"",description:"Specify a custom tag used on the root element.",description_zh:"指定根元素上使用的自定义标记。",required:!1},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},tile:{default:"false",value:"",type:"boolean",version:"",description:"Removes any applied border-radius from the component.",description_zh:"从组件中删除任何应用的 border-radius。",required:!1},"value-comparator":{default:"undefined",value:"",type:"(a: any, b: any) => boolean",version:"",description:"Apply a custom comparison algorithm to compare model-value and values contains in the items prop.",description_zh:"应用自定义比较算法来比较 models-value 和 items prop 中包含的值。",required:!1},variant:{default:"'text'",value:"",type:"flat / elevated / tonal / outlined / text / plain",version:"",description:"Applies a distinct style to the component.",description_zh:"将不同的样式应用于组件。",required:!1},width:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the width for the component.",description_zh:"设置组件的宽度。",required:!1}},link:"https://vuetifyjs.com/en/api/v-list/",link_zh:"https://vuetifyjs.com/en/api/v-list/",typeDetail:{},events:[{name:"click:activate",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"[{ id: unknown; value: boolean; path: unknown[] }]",value:""},{name:"click:open",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"[{ id: unknown; value: boolean; path: unknown[] }]",value:""},{name:"click:select",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"[{ id: unknown; value: boolean; path: unknown[] }]",value:""},{name:"update:activated",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"[unknown]",value:""},{name:"update:opened",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"[unknown]",value:""},{name:"update:selected",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"[unknown]",value:""}],methods:[],slots:[{name:"append",description:"Adds an item inside the input and after input content.",description_zh:"在 input 内容内和 After input 内容中添加一个项目。",params:"{\n  isActive: boolean\n  isOpen: boolean\n  isSelected: boolean\n  isIndeterminate: boolean\n  select: (value: boolean) => void\n} & { item: any }"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:""},{name:"divider",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{ props: { title: string; value: any; [string]: any } }"},{name:"header",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{ props: { title: string; value: any; [string]: any } }"},{name:"item",description:"Define a custom item appearance.",description_zh:"定义自定义项外观。",params:"{ props: { title: string; value: any; [string]: any } }"},{name:"prepend",description:"Adds an item outside the input and before input content.",description_zh:"在输入内容之外和之前添加项目。",params:"{\n  isActive: boolean\n  isOpen: boolean\n  isSelected: boolean\n  isIndeterminate: boolean\n  select: (value: boolean) => void\n} & { item: any }"},{name:"subheader",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{ props: { title: string; value: any; [string]: any } }"},{name:"subtitle",description:"Slot for the component’s subtitle content.",description_zh:"组件字幕内容的插槽。",params:"{ subtitle: string | number } & { item: any }"},{name:"title",description:"Slot for the component’s title content.",description_zh:"组件标题内容的插槽。",params:"{ title: string | number } & { item: any }"}],exposed:[{name:"children",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"Map<unknown, unknown[]>"},{name:"focus",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(location: 'next' | 'prev' | 'first' | 'last') => void"},{name:"getPath",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(id: unknown) => unknown[]"},{name:"open",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(id: unknown, value: boolean, event: Event) => void"},{name:"parents",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"Map<unknown, unknown>"},{name:"select",description:"The function used to select an items. The first argument expects the value of the item.",description_zh:"The function used to select an items. The first argument expects the value of the item.",detail:"(id: unknown, value: boolean, event: Event) => void"}],suggestions:["v-list-group","v-list-subheader","v-list-item","v-list-item-title","v-list-item-subtitle","v-list-item-action","v-list-img","v-list-item-media"]},Et={name:"VListGroup",props:{"active-color":{default:"undefined",value:"",type:"string",version:"",description:"The applied color when the component is in an active state.",description_zh:"组件处于活动状态时应用的颜色。",required:!1},"append-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Creates a v-icon component after default content in the append slot.",description_zh:"在附加插槽中的默认内容之后创建一个 v 图标组件。",required:!1},"base-color":{default:"undefined",value:"",type:"string",version:"",description:"Sets the color of component when not focused.",description_zh:"设置未聚焦时组件的颜色。",required:!1},"collapse-icon":{default:"'$collapse'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Icon to display when the list item is expanded.",description_zh:"展开列表项时显示的图标。",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},"expand-icon":{default:"'$expand'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Icon to display when the list item is collapsed.",description_zh:"折叠列表项时显示的图标。",required:!1},fluid:{default:"false",value:"",type:"boolean",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},"prepend-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Prepends an icon to the component, uses the same syntax as v-icon.",description_zh:"在组件前面加上一个图标，使用与 v-icon 相同的语法。",required:!1},subgroup:{default:"false",value:"",type:"boolean",version:"",description:"Designate the component as nested list group.",description_zh:"将组件指定为嵌套列表组。",required:!1},tag:{default:"'div'",value:"",type:"string",version:"",description:"Specify a custom tag used on the root element.",description_zh:"指定根元素上使用的自定义标记。",required:!1},title:{default:"undefined",value:"",type:"string",version:"",description:"Specify a title text for the component.",description_zh:"指定组件的标题文本。",required:!1},value:{default:"undefined",value:"",type:"any",version:"",description:"Expands / Collapse the list-group.",description_zh:"展开 / 折叠列表组。",required:!1}},link:"https://vuetifyjs.com/en/api/v-list-group/",link_zh:"https://vuetifyjs.com/en/api/v-list-group/",typeDetail:{},events:[],methods:[],slots:[{name:"activator",description:"When used, will activate the component when clicked (or hover for specific components). This manually stops the event propagation. Without this slot, if you open the component through its model, you will need to manually stop the event propagation.",description_zh:"使用时，将在单击时激活组件（或将鼠标悬停在特定组件上）。这将手动停止事件传播。如果没有此插槽，如果通过其模型打开组件，则需要手动停止事件传播。",params:"{ isOpen: boolean; props: Record<string, unknown> }"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:""}],exposed:[{name:"isOpen",description:"Returns the current state of the list-group.",description_zh:"Returns the current state of the list-group.",detail:"boolean"}]},Pt={name:"VListImg",props:{tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-list-img/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-list-img/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},qt={name:"VListItem",props:{active:{default:"undefined",value:"",type:"boolean",version:"",description:"Controls the active state of the item. This is typically used to highlight the component.",description_zh:"控制项的活动状态。这通常用于突出显示组件。",required:!1},"active-class":{default:"undefined",value:"",type:"string",version:"",description:"The class applied to the component when it matches the current route. Find more information about the active-class prop on the vue-router documentation.",description_zh:"当组件与当前路由匹配时应用于组件的类。在 vue-router 文档中找到有关 active-class 属性的更多信息。",required:!1},"active-color":{default:"undefined",value:"",type:"string",version:"",description:"The applied color when the component is in an active state.",description_zh:"组件处于活动状态时应用的颜色。",required:!1},"append-avatar":{default:"undefined",value:"",type:"string",version:"",description:"Appends a v-avatar component after default content in the append slot.",description_zh:"在 append 插槽中的 default content 之后附加一个 v-avatar 组件。",required:!1},"append-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Creates a v-icon component after default content in the append slot.",description_zh:"在附加插槽中的默认内容之后创建一个 v 图标组件。",required:!1},"base-color":{default:"undefined",value:"",type:"string",version:"v3.3.0",description:"Sets the color of component when not focused.",description_zh:"设置未聚焦时组件的颜色。",required:!1},border:{default:"false",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be xs, sm, md, lg, xl.",description_zh:"指定应用于组件的 border-radius。这可以是 xs、sm、md、lg、xl。",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control when in an active state or input-value is true - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page,",description_zh:"当处于活动状态或输入值为 true 时，将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上找到内置类的列表，",required:!1},density:{default:"'default'",value:"",type:"default / comfortable / compact",version:"",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。",required:!1},disabled:{default:"false",value:"",type:"boolean",version:"",description:"Removes the ability to click or target the component.",description_zh:"删除单击组件或定位组件的功能。",required:!1},elevation:{default:"undefined",value:"",type:"string | number",version:"",description:"Designates an elevation applied to the component between 0 and 24. You can find more information on the elevation page.",description_zh:"指定应用于组件的 0 到 24 之间的高程。您可以在海拔页面上找到更多信息。",required:!1},exact:{default:"false",value:"",type:"boolean",version:"",description:"Exactly match the link. Without this, ‘/’ will match every route. You can find more information about the exact prop on the vue-router documentation.",description_zh:"与链接完全匹配。如果没有这个，'/' 将匹配每个路由。你可以在 vue-router 文档中找到有关 exact prop 的更多信息。",required:!1},height:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the height for the component.",description_zh:"设置组件的高度。",required:!1},href:{default:"undefined",value:"",type:"string",version:"",description:"Designates the component as anchor and applies the href attribute.",description_zh:"将组件指定为锚点并应用 href 属性。",required:!1},lines:{default:"false",value:"",type:"false / one / two / three",version:"",description:"The line declaration specifies the minimum height of the item and can also be controlled from v-list with the same prop.",description_zh:"line 声明指定了项目的最小高度，也可以从具有相同 prop 的 v-list 中控制。",required:!1},link:{default:"undefined",value:"",type:"boolean",version:"",description:"Designates that the component is a link. This is automatic when using the href or to prop.",description_zh:"指定零部件为链接。这在使用 href 或 to prop 时是自动的。",required:!1},"max-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum height for the component.",description_zh:"设置组件的最大高度。",required:!1},"max-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。",required:!1},"min-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum height for the component.",description_zh:"设置组件的最小高度。",required:!1},"min-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum width for the component.",description_zh:"设置组件的最小宽度。",required:!1},nav:{default:"false",value:"",type:"boolean",version:"",description:"Reduces the width v-list-item takes up as well as adding a border radius.",description_zh:"减少 v-list-item 占用的宽度，并添加边框半径。",required:!1},"prepend-avatar":{default:"undefined",value:"",type:"string",version:"",description:"Prepends a v-avatar component in the prepend slot before default content.",description_zh:"在 preend 插槽中将 v-avatar 组件预置在 default 内容之前。",required:!1},"prepend-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Creates a v-icon component in the prepend slot before default content.",description_zh:"在默认内容之前的前置插槽中创建 v 图标组件。",required:!1},replace:{default:"false",value:"",type:"boolean",version:"",description:"Setting replace prop will call router.replace() instead of router.push() when clicked, so the navigation will not leave a history record. You can find more information about the replace prop on the vue-router documentation.",description_zh:"设置 replace 属性将在单击时调用 router.replace（） 而不是 router.push（），因此导航不会留下历史记录。你可以在 vue-router 文档中找到有关 replace prop 的更多信息。",required:!1},ripple:{default:"true",value:"",type:"boolean | { class: string }",version:"",description:"Applies the v-ripple directive.",description_zh:"应用 v-ripple 指令。",required:!1},rounded:{default:"undefined",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. Find more information on available border radius classes on the Border Radius page.",description_zh:"指定应用于组件的 border-radius。这可以是 0、xs、sm、true、lg、xl、pill、circle 和 shaped。在 Border Radius 页面上查找有关可用边界半径类的更多信息。",required:!1},slim:{default:"false",value:"",type:"boolean",version:"",description:"Reduces horizontal spacing for badges, icons, tooltips, and avatars to create a more compact visual representation.",description_zh:"减少徽章、图标、工具提示和头像的水平间距，以创建更紧凑的视觉表示。",required:!1},subtitle:{default:"undefined",value:"",type:"string | number",version:"",description:"Specify a subtitle text for the component.",description_zh:"指定组件的副标题文本。",required:!1},tag:{default:"'div'",value:"",type:"string",version:"",description:"Specify a custom tag used on the root element.",description_zh:"指定根元素上使用的自定义标记。",required:!1},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},tile:{default:"false",value:"",type:"boolean",version:"",description:"Removes any applied border-radius from the component.",description_zh:"从组件中删除任何应用的 border-radius。",required:!1},title:{default:"undefined",value:"",type:"string | number",version:"",description:"Generates a v-list-item-title component with the supplied value. Note that this overrides the native title attribute, that must be set with v-bind:title.attr instead.",description_zh:"使用提供的值生成 v-list-item-title 组件。请注意，这会覆盖原生 title 属性，必须用 v-bind：title.attr 来设置。",required:!0,foreach:!0},to:{default:"undefined",value:"",type:"RouteLocationRaw",version:"",description:"Denotes the target route of the link. You can find more information about the to prop on the vue-router documentation.",description_zh:"表示链路的目标路由。你可以在 vue-router 文档中找到有关 to prop 的更多信息。",required:!1},value:{default:"undefined",value:"",type:"any",version:"",description:"The value used for selection. Obtained from v-list’s v-model:selected when the item is selected.",description_zh:"用于选择的值。当项目被选中时，从 v-list 的 v-model：selected 中获得。",required:!1},variant:{default:"'text'",value:"",type:"flat / elevated / tonal / outlined / text / plain",version:"",description:"Applies a distinct style to the component.",description_zh:"将不同的样式应用于组件。",required:!1},width:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the width for the component.",description_zh:"设置组件的宽度。",required:!1}},link:"https://vuetifyjs.com/en/api/v-list-item/",link_zh:"https://vuetifyjs.com/en/api/v-list-item/",typeDetail:{},events:[{name:"click",description:"Event that is emitted when the component is clicked.",description_zh:"单击组件时发出的事件。",params:"[MouseEvent | KeyboardEvent]",value:""},{name:"clickOnce",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"[MouseEvent]",value:""}],methods:[],slots:[{name:"append",description:"Adds an item inside the input and after input content.",description_zh:"在 input 内容内和 After input 内容中添加一个项目。",params:"{\n  isActive: boolean\n  isOpen: boolean\n  isSelected: boolean\n  isIndeterminate: boolean\n  select: (value: boolean) => void\n}"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{\n  isActive: boolean\n  isOpen: boolean\n  isSelected: boolean\n  isIndeterminate: boolean\n  select: (value: boolean) => void\n}"},{name:"prepend",description:"Adds an item outside the input and before input content.",description_zh:"在输入内容之外和之前添加项目。",params:"{\n  isActive: boolean\n  isOpen: boolean\n  isSelected: boolean\n  isIndeterminate: boolean\n  select: (value: boolean) => void\n}"},{name:"subtitle",description:"Slot for the component’s subtitle content.",description_zh:"组件字幕内容的插槽。",params:"{ subtitle: string | number }"},{name:"title",description:"Slot for the component’s title content.",description_zh:"组件标题内容的插槽。",params:"{ title: string | number }"}],exposed:[{name:"activate",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(activated: boolean, e: Event) => void"},{name:"id",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"{}"},{name:"isActivated",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"isGroupActivator",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"isSelected",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"list",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"{ hasPrepend: boolean; updateHasPrepend: (value: boolean) => void }"},{name:"root",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"{\n  children: Map<unknown, unknown[]>\n  parents: Map<unknown, unknown>\n  activatable: boolean\n  selectable: boolean\n  opened: Set<unknown>\n  activated: Set<unknown>\n  selected: Map<unknown, 'on' | 'off' | 'indeterminate'>\n  selectedValues: unknown[]\n  register: (\n    id: unknown,\n    parentId: unknown,\n    isGroup?: boolean | undefined,\n  ) => void\n  unregister: (id: unknown) => void\n  open: (id: unknown, value: boolean, event?: Event | undefined) => void\n  activate: (id: unknown, value: boolean, event?: Event | undefined) => void\n  select: (id: unknown, value: boolean, event?: Event | undefined) => void\n  openOnSelect: (id: unknown, value: boolean, event?: Event | undefined) => void\n  getPath: (id: unknown) => unknown[]\n}"},{name:"select",description:"The function used to select an items. The first argument expects the value of the item.",description_zh:"The function used to select an items. The first argument expects the value of the item.",detail:"(selected: boolean, e: Event) => void"}]},Mt={name:"VListItemAction",props:{end:{default:"false",value:"",type:"boolean",description:"Treat it as the last button and add a margin left margin to it.",description_zh:"视为最后一个按钮并为其添加左边距 margin 。"},start:{default:"false",value:"",type:"boolean",description:"Treat the first button as having a margin with a right margin added to it.",description_zh:"视为第一个按钮并未其添加右边距 margin 。"},tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-list-item-action/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-list-item-action/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},Ot={name:"VListItemMedia",props:{end:{default:"false",value:"",type:"boolean",description:"Treat it as the last button and add a margin left margin to it.",description_zh:"视为最后一个按钮并为其添加左边距 margin 。"},start:{default:"false",value:"",type:"boolean",description:"Treat the first button as having a margin with a right margin added to it.",description_zh:"视为第一个按钮并未其添加右边距 margin 。"},tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-list-item-media/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-list-item-media/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},Gt={name:"VListItemSubtitle",props:{tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-list-item-subtitle/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-list-item-subtitle/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},At={name:"VListItemTitle",props:{tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-list-item-title/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-list-item-title/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},Vt={name:"VListSubheader",props:{color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},inset:{default:"false",value:"",type:"boolean",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"},sticky:{default:"false",value:"",type:"boolean",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"},tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"},title:{default:"undefined",value:"",type:"string",description:"Specify a title text for the component.",description_zh:"指定组件的标题文本。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-list-subheader/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-list-subheader/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},Ht={name:"VLocaleProvider",props:{"fallback-locale":{default:"undefined",value:"",type:"string",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"},locale:{default:"undefined",value:"",type:"string",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"},messages:{default:"undefined",value:"",type:"unknown",description:"Display a list of messages or messages (if using strings)",description_zh:"显示消息列表或消息（如果使用字符串）"},rtl:{default:"undefined",value:"",type:"boolean",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"}},link:"https://vuetifyjs.com/zh-Hans/api/v-locale-provider/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-locale-provider/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},Y={name:"VMain",props:{scrollable:{default:"false",value:"",type:"boolean",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"},tag:{default:"main",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-main/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-main/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},Ft={name:"VMenu",props:{activator:{default:"undefined",value:"",type:"Element | 'parent' | (string & {}) | ComponentPublicInstance",description:"Explicitly sets the overlay’s activator.",description_zh:"显式设置叠加层的激活器。",required:!1},"activator-props":{default:"{}",value:"",type:"unknown",description:"Apply custom properties to the activator.",description_zh:"将自定义属性应用于激活器。",required:!1},attach:{default:"false",value:"",type:"string | boolean | Element",description:"Specifies which DOM element the overlay content should teleport to. Can be a direct element reference, querySelector string, or true to disable teleporting. Uses body by default. Generally not recommended except as a last resort: the default positioning algorithm should handle most scenarios better than is possible without teleporting, and you may have unexpected behavior if the menu ends up as child of its activator.",description_zh:"指定覆盖内容应传送到哪个 DOM 元素。可以是直接元素引用、querySelector 字符串或 true，以禁用传送。默认使用 body。除非万不得已，否则通常不建议使用：默认定位算法应该比没有传送时更好地处理大多数情况，如果菜单最终成为其激活器的子项，则可能会出现意外行为。",required:!1},"close-delay":{default:"250",value:"",type:"string | number",description:"Milliseconds to wait before closing component. Only works with the open-on-hover prop.",description_zh:"关闭组件之前等待的毫秒数。仅适用于 open-on-hover 属性。",required:!1},"close-on-back":{default:"true",value:"",type:"boolean",description:"Closes the overlay content when the browser’s back button is pressed or $router.back() is called, cancelling the original navigation. persistent overlays will cancel navigation and animate as if they were clicked outside instead of closing.",description_zh:"在按下浏览器的后退按钮或调用 $router.back（） 时关闭覆盖内容，从而取消原始导航。永久叠加将取消导航并制作动画，就像在外部单击而不是关闭一样。",required:!1},"close-on-content-click":{default:"true",value:"",type:"boolean",description:"Designates if menu should close when its content is clicked.",description_zh:"指定在单击菜单内容时是否应关闭菜单。",required:!1},contained:{default:"false",value:"",type:"boolean",description:"Limits the size of the component and scrim to its offset parent. Implies absolute and attach. (Note: The parent element must have position: relative.).",description_zh:"将零部件和纱布的大小限制为其偏移父级。暗示 absolute 和 attach。（注意：父元素必须具有 position： relative。",required:!1},"content-class":{default:"undefined",value:"",type:"any",description:"Applies a custom class to the detached element. This is useful because the content is moved to the beginning of the v-app component (unless the attach prop is provided) and is not targetable by classes passed directly on the component.",description_zh:"将自定义类应用于分离的元素。这很有用，因为内容被移动到 v-app 组件的开头（除非提供了 attach 属性），并且不能被直接在组件上传递的类所定位。",required:!1},"content-props":{default:"undefined",value:"",type:"any",description:"Apply custom properties to the content.",description_zh:"将自定义属性应用于内容。",required:!1},disabled:{default:"false",value:"",type:"boolean",description:"Removes the ability to click or target the component.",description_zh:"删除单击组件或定位组件的功能。",required:!1},eager:{default:"false",value:"",type:"boolean",description:"Forces the component’s content to render when it mounts. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO.",description_zh:"强制组件的内容在挂载时呈现。如果您的内容不会在 DOM 中呈现，并且您希望为 SEO 抓取，这将非常有用。",required:!1},height:{default:"undefined",value:"",type:"string | number",description:"Sets the height for the component.",description_zh:"设置组件的高度。",required:!1},id:{default:"undefined",value:"",type:"string",description:"The unique identifier of the component.",description_zh:"组件的唯一标识符。",required:!1},location:{default:"undefined",value:"",type:"Anchor",description:"Specifies the anchor point for positioning the component, using directional cues to align it either horizontally, vertically, or both…",description_zh:"指定用于定位组件的锚点，使用方向提示将其水平对齐、垂直对齐或两者对齐......",required:!1},"location-strategy":{default:"'connected'",value:"",type:"static / connected / LocationStrategyFn",description:"A function used to specifies how the component should position relative to its activator.",description_zh:"用于指定组件相对于其激活器的位置的函数。",required:!1},"max-height":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum height for the component.",description_zh:"设置组件的最大高度。",required:!1},"max-width":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。",required:!1},"min-height":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum height for the component.",description_zh:"设置组件的最小高度。",required:!1},"min-width":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum width for the component. Use auto to use the activator width.",description_zh:"设置组件的最小宽度。使用 auto 来使用激活器宽度。",required:!1},"v-model":{default:"false",value:"",type:"boolean",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v-model 值。如果 component 支持 multiple prop，则默认为空数组。",required:!1},"no-click-animation":{default:"false",value:"",type:"boolean",description:"Disables the bounce effect when clicking outside of the content element when using the persistent prop.",description_zh:"在使用 persistent prop 时，在内容元素外部单击时禁用弹跳效果。",required:!1},offset:{default:"undefined",value:"",type:"string | number | number[]",description:"A single value that offsets content away from the target based upon what side it is on.",description_zh:"一个值，该值根据内容所在的一侧将内容从目标偏移。",required:!1},opacity:{default:"undefined",value:"",type:"string | number",description:"Sets the overlay opacity.",description_zh:"设置叠加不透明度。",required:!1},"open-delay":{default:"300",value:"",type:"string | number",description:"Milliseconds to wait before opening component. Only works with the open-on-hover prop.",description_zh:"打开组件之前等待的毫秒数。仅适用于 open-on-hover 属性。",required:!1},"open-on-click":{default:"undefined",value:"",type:"boolean",description:"Designates whether menu should open on activator click.",description_zh:"指定是否应在单击激活器时打开菜单。",required:!1},"open-on-focus":{default:"undefined",value:"",type:"boolean",description:"Activate the component when the activator is focused.",description_zh:"当激活器聚焦时激活组件。",required:!1},"open-on-hover":{default:"false",value:"",type:"boolean",description:"Designates whether menu should open on activator hover.",description_zh:"指定是否应在激活器悬停时打开菜单。",required:!1},origin:{default:"'auto'",value:"",type:"Anchor / auto / overlap",description:"Sets the transition origin on the element. You can find more information on the MDN documentation for transition origin.",description_zh:"设置元素上的过渡原点。您可以在 transition origin 的 MDN 文档上找到更多信息。",required:!1},persistent:{default:"false",value:"",type:"boolean",description:"Clicking outside of the element or pressing esc key will not deactivate it.",description_zh:"单击元素外部或按 Esc 键不会将其停用。",required:!1},scrim:{default:"false",value:"",type:"string | boolean",description:"Accepts true/false to enable background, and string to define color.",description_zh:"接受 true/false 以启用背景，接受 string 以定义颜色。",required:!1},"scroll-strategy":{default:"'reposition'",value:"",type:"none / close / block / reposition / ScrollStrategyFn",description:"Strategy used when the component is activate and user scrolls.",description_zh:"当组件处于 activate 状态且用户滚动时使用的策略。",required:!1},submenu:{default:"false",value:"",type:"boolean",description:'Opens with right arrow and closes on left instead of up/down. Implies location="end". Directions are reversed for RTL.',description_zh:"使用向右箭头打开，从左侧而不是向上/向下关闭。暗示 location=“end”。RTL 的方向是相反的。",required:!1},target:{default:"undefined",value:"",type:"  | Element  | 'parent'  | 'cursor'  | (string & {})  | ComponentPublicInstance  | [number, number]",description:"For locationStrategy=“connected”, specify an element or array of x,y coordinates that the overlay should position itself relative to. This will be the activator element by default.",description_zh:"对于 locationStrategy=“connected”，指定叠加层应相对于其定位自身的 x，y 坐标的元素或数组。默认情况下，这将是 activator 元素。",required:!1},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},transition:{default:"{component: {name: 'VDialogTransition'}}",value:"",type:"  | string  | boolean  | (TransitionProps & { component: Component })  | { component: Component }",description:"Sets the component transition. Can be one of the built in or custom transition.",description_zh:"设置零部件过渡。可以是内置或自定义过渡之一。",required:!1},width:{default:"undefined",value:"",type:"string | number",description:"Sets the width for the component.",description_zh:"设置组件的宽度。",required:!1},"z-index":{default:"2000",value:"",type:"string | number",description:"The z-index used for the component.",description_zh:"用于组件的 z-index。",required:!1}},link:"https://vuetifyjs.com/en/api/v-menu/",link_zh:"https://vuetifyjs.com/en/api/v-menu/",typeDetail:{},events:[{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件的模型更改时发出的事件。",params:"[boolean]",value:""}],methods:[],slots:[{name:"activator",description:"When used, will activate the component when clicked (or hover for specific components). This manually stops the event propagation. Without this slot, if you open the component through its model, you will need to manually stop the event propagation.",description_zh:"使用时，将在单击时激活组件（或将鼠标悬停在特定组件上）。这将手动停止事件传播。如果没有此插槽，如果通过其模型打开组件，则需要手动停止事件传播。",params:"{\n  isActive: boolean\n  props: Record<string, any>\n  targetRef: TemplateRef\n}"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{ isActive: Ref<boolean> }"}],exposed:[{name:"activatorEl",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"HTMLElement"},{name:"animateClick",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"() => void"},{name:"contentEl",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"HTMLElement"},{name:"globalTop",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"id",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"localTop",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"scrimEl",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"HTMLElement"},{name:"target",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"HTMLElement | [number, number]"},{name:"updateLocation",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(e: Event) => void"}]},U={name:"VMessages",props:{active:{default:"false",value:"",type:"boolean",description:"Determines whether the messages are visible or not.",description_zh:"确定消息是否可见。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},messages:{default:"[]",value:"",type:"string | string[]",description:"Display a list of messages or messages (if using strings)",description_zh:"显示消息列表或消息（如果使用字符串）"},transition:{default:"{\n  component: {name: 'slide-y-transition'},\n  leaveAbsolute: true,\n  group: true\n}",value:"",type:"  | { component: Component; leaveAbsolute: boolean; group: boolean }  | string  | boolean  | (TransitionProps & { component: Component })",description:"Sets the component transition. Can be one of the built in or custom transition.",description_zh:"设置组件过渡。可以是内置过渡或自定义过渡之一。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-messages/#props",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-messages/#props",typeDetail:{},events:[],methods:[],slots:[{name:"message",description:"Slot used to customize the message content.",description_zh:"用于自定义消息内容的插槽。",params:"{ message: string }"}]},jt={name:"VNavigationDrawer",props:{absolute:{default:"false",value:"",type:"boolean",version:"",description:"Applies position: absolute to the component.",description_zh:"将 position： absolute 应用于组件。",required:!1},border:{default:"false",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be xs, sm, md, lg, xl.",description_zh:"指定应用于组件的 border-radius。这可以是 xs、sm、md、lg、xl。",required:!1},"close-delay":{default:"undefined",value:"",type:"string | number",version:"",description:"Milliseconds to wait before closing component. Only applies to hover and focus events.",description_zh:"关闭组件之前等待的毫秒数。仅适用于悬停和焦点事件。",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},"disable-resize-watcher":{default:"false",value:"",type:"boolean",version:"",description:"Prevents the automatic opening or closing of the drawer when resized, based on whether the device is mobile or desktop.",description_zh:"防止在调整大小时根据设备是移动设备还是桌面设备自动打开或关闭抽屉。",required:!1},"disable-route-watcher":{default:"false",value:"",type:"boolean",version:"",description:"Disables opening of navigation drawer when route changes.",description_zh:"禁用在路线更改时打开抽屉式导航栏。",required:!1},elevation:{default:"undefined",value:"",type:"string | number",version:"",description:"Designates an elevation applied to the component between 0 and 24. You can find more information on the elevation page.",description_zh:"指定应用于组件的 0 到 24 之间的高程。您可以在海拔页面上找到更多信息。",required:!1},"expand-on-hover":{default:"false",value:"",type:"boolean",version:"",description:"Collapses the drawer to a mini-variant until hovering with the mouse.",description_zh:"将抽屉折叠为迷你变体，直到将鼠标悬停在鼠标上。",required:!1},floating:{default:"false",value:"",type:"boolean",version:"",description:"A floating drawer has no visible container (no border-right).",description_zh:"浮动抽屉没有可见的容器 （没有 border-right）。",required:!1},image:{default:"undefined",value:"",type:"string",version:"",description:"Apply a specific background image to the component.",description_zh:"将特定背景图像应用于组件。",required:!1},location:{default:"'start'",value:"",type:"start / end / left / right / top / bottom",version:"",description:"Controls the edge of the screen the drawer is attached to.",description_zh:"控制抽屉所连接的屏幕边缘。",required:!1},mobile:{default:"null",value:"",type:"boolean",version:"",description:"Determines the display mode of the component. If true, the component will be displayed in mobile mode. If false, the component will be displayed in desktop mode. If null, will be based on the current mobile-breakpoint",description_zh:"确定组件的显示模式。如果为 true，则组件将以移动模式显示。如果为 false，则组件将以桌面模式显示。如果为 null，则将基于当前的 mobile-breakpoint",required:!1},"mobile-breakpoint":{default:"undefined",value:"",type:"number / xs / sm / md / lg / xl / xxl",version:"",description:"Sets the designated mobile breakpoint for the component. This will apply alternate styles for mobile devices such as the temporary prop, or activate the bottom prop when the breakpoint value is met. Setting the value to 0 will disable this functionality.",description_zh:"为组件设置指定的移动断点。这将为移动设备应用替代样式，例如 temporary prop，或在满足断点值时激活 bottom prop。将值设置为 0 将禁用此功能。",required:!1},"v-model":{default:"null",value:"",type:"boolean",version:"",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v-model 值。如果 component 支持 multiple prop，则默认为空数组。",required:!1},name:{default:"undefined",value:"",type:"string",version:"",description:"Assign a specific name for layout registration.",description_zh:"为布局注册分配特定名称。",required:!1},"open-delay":{default:"undefined",value:"",type:"string | number",version:"",description:"Milliseconds to wait before opening component. Only applies to hover and focus events.",description_zh:"打开组件之前等待的毫秒数。仅适用于悬停和焦点事件。",required:!1},order:{default:"0",value:"",type:"string | number",version:"",description:"Adjust the order of the component in relation to its registration order.",description_zh:"根据元件的注册顺序调整元件的顺序。",required:!1},permanent:{default:"false",value:"",type:"boolean",version:"",description:"The drawer remains visible regardless of screen size.",description_zh:"无论屏幕大小如何，抽屉都保持可见。",required:!1},persistent:{default:"false",value:"",type:"boolean",version:"",description:"Clicking outside or pressing esc key will not dismiss the dialog.",description_zh:"在外部单击或按 esc 键不会关闭对话框。",required:!1},rail:{default:"null",value:"",type:"boolean",version:"",description:"Sets the component width to the rail-width value.",description_zh:"将组件宽度设置为 rail-width 值。",required:!1},"rail-width":{default:"56",value:"",type:"string | number",version:"",description:"Sets the width for the component when rail is enabled.",description_zh:"设置启用边栏时组件的宽度。",required:!1},rounded:{default:"undefined",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. Find more information on available border radius classes on the Border Radius page.",description_zh:"指定应用于组件的 border-radius。这可以是 0、xs、sm、true、lg、xl、pill、circle 和 shaped。在 Border Radius 页面上查找有关可用边界半径类的更多信息。",required:!1},scrim:{default:"true",value:"",type:"string | boolean",version:"",description:"Determines whether an overlay is used when a temporary drawer is open. Accepts true/false to enable background, and string to define color.",description_zh:"确定在打开临时抽屉时是否使用叠加。接受 true/false 以启用背景，接受 string 以定义颜色。",required:!1},sticky:{default:"false",value:"",type:"boolean",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},tag:{default:"'nav'",value:"",type:"string",version:"",description:"Specify a custom tag used on the root element.",description_zh:"指定根元素上使用的自定义标记。",required:!1},temporary:{default:"false",value:"",type:"boolean",version:"",description:"A temporary drawer sits above its application and uses a scrim (overlay) to darken the background.",description_zh:"一个临时抽屉位于其应用程序上方，并使用纱幕（覆盖层）使背景变暗。",required:!1},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},tile:{default:"false",value:"",type:"boolean",version:"",description:"Removes any applied border-radius from the component.",description_zh:"从组件中删除任何应用的 border-radius。",required:!1},touchless:{default:"false",value:"",type:"boolean",version:"",description:"Disable mobile touch functionality.",description_zh:"禁用移动触控功能。",required:!1},width:{default:"256",value:"",type:"string | number",version:"",description:"Sets the width for the component.",description_zh:"设置组件的宽度。",required:!1}},link:"https://vuetifyjs.com/en/api/v-navigation-drawer/",link_zh:"https://vuetifyjs.com/en/api/v-navigation-drawer/",typeDetail:{},events:[{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件的模型更改时发出的事件。",params:"[boolean]",value:""},{name:"update:rail",description:"Event that is emitted when the rail model changes.",description_zh:"当轨道模型更改时发出的事件。",params:"[boolean]",value:""}],methods:[],slots:[{name:"append",description:"A slot at the bottom of the drawer.",description_zh:"抽屉底部的插槽。",params:""},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:""},{name:"image",description:"Used to modify v-img properties when using the src prop.",description_zh:"用于在使用 src 属性时修改 v-img 属性。",params:"{ image: string }"},{name:"prepend",description:"A slot at the top of the drawer",description_zh:"抽屉顶部的插槽",params:""}],exposed:[{name:"isStuck",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean | 'top' | 'bottom'"}]},$t={name:"VNavigationItem",props:{active:{default:"false",description:"Controls the active state of the item. This is typically used to highlight the component,",type:"boolean",description_zh:"控制项目的活动状态。这通常用于突出组件",value:""},"active-class":{default:"undefined",description:"The class applied to the component when it matches the current route. Find more information about the active-class prop on the vue-router documentation.",type:"string",description_zh:"当该类与当前路由匹配时应用于组件。在vue-router文档中查找有关活动类道具的更多信息。",value:""},"active-color":{default:"undefined",description:"The applied color when the component is in an active state.",type:"string",description_zh:"组件处于活动状态时应用的颜色。",value:""},"append-avatar":{default:"undefined",description:"Appends a v-avatar component after default content in the append slot.",type:"string",description_zh:"在 append 插槽中的默认内容后附加一个 v-avatar 组件。",value:""},"append-icon":{default:"undefined",description:"Creates a v-icon component after default content in the append slot.",type:"string | (string | [string, number])[] | (new () => any) | FunctionalComponent",description_zh:"在追加槽中的默认内容之后创建一个 v-icon 组件。",value:""},"base-color":{default:"undefined",description:"MISSING DESCRIPTION (edit in github)",type:"string",description_zh:"缺少描述(在github中编辑)",value:""},border:{default:"false",description:"Applies a border style to the component.",type:"string | number | boolean",description_zh:"应用边框样式到组件。",value:""},color:{default:"undefined",description:"Applies specified color to the control when in an active state or input-value is true - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page,",type:"string",description_zh:"当处于活动状态或输入值为 true 时，将指定的颜色应用于控件 - 支持实用程序颜色（例如，成功或紫色）或 css 颜色（例如，成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类列表",value:""},density:{default:"default",description:"Removes the click or target function of the component.",type:"default / comfortable / compact",description_zh:"调整组件使用的垂直高度。",value:["default","comfortable","compact"]},disabled:{default:"false",description:"Removes the click or target function of the component.",type:"boolean",description_zh:"移除组件的单击或 target 功能。",value:""},elevation:{default:"undefined",description:"The elevation of the component can accept values between 0 and 24. You can read more on elevation page.",type:"string | number",description_zh:"组件的海拔可接受 0 到 24 之间的值。你可以在 elevation page 浏览更多信息。",value:""},exact:{default:"false",description:"Exact match link. Without this link, '/' will match every route. You can view more exact props in the vue-router documentation.",type:"boolean",description_zh:"完全匹配链接。如果没有这个链接，‘/’ 将匹配每个路由。你能够在 vue-router 文档浏览更多 exact prop。",value:""},height:{default:"undefined",description:"Set the height of the component.",type:"string | number",description_zh:"设定组件的高度。",value:""},href:{default:"undefined",description:"Specifies the component as an anchor and applies the href attribute.",type:"string",description_zh:"指定组件为锚点并应用 href 属性。",value:""},lines:{default:"undefined",description:"MISSING DESCRIPTION (edit in github)",type:"one / two / three",description_zh:"缺少说明（在 github 中编辑）",value:["one","two","three"]},link:{default:"false",description:"Designates that the component is a link. This is automatic when using the href or to prop.",type:"boolean",description_zh:"表示该组件是一个链接。这在使用 href 或 to prop 时是自动的。",value:""},"max-height":{default:"undefined",description:"Set the maximum height of the component.",type:"string | number",description_zh:"设定组件的最大高度。",value:""},"max-width":{default:"undefined",description:"Sets the maximum width of the component.",type:"string | number",description_zh:"设定组件的最大宽度。",value:""},"min-height":{default:"undefined",description:"Set the minimum height of the component.",type:"string | number",description_zh:"设定组件的最小高度。",value:""},"min-width":{default:"undefined",description:"Sets the minimum width of the component.",type:"string | number",description_zh:"设定组件的最小宽度。",value:""},nav:{default:"false",description:"MISSING DESCRIPTION (edit in github)",type:"boolean",description_zh:"缺少描述(在github中编辑)",value:""},"prepend-avatar":{default:"undefined",description:"Prepends a v-avatar component in the prepend slot before default content.",type:"string",description_zh:"将 v-avatar 组件预置在默认内容之前的 prepend 插槽中。",value:""},"prepend-icon":{default:"undefined",description:"Creates a v-icon component in the prepend slot before default content.",type:"string | (string | [string, number])[] | (new () => any) | FunctionalComponent",description_zh:"在默认内容之前的前置槽中创建一个v-icon组件。",value:""},replace:{default:"false",description:"Setting replace prop will call router.replace() instead of router.push() when clicked, so the navigation will not leave a history record. You can find more information about the replace prop on the vue-router documentation.",type:"boolean",description_zh:"设置 replace prop 会在点击时调用 router.replace（） 而不是 router.push（），因此导航不会留下历史记录。你可以在 vue-router 文档中找到更多关于 replace 属性的信息。",value:""},ripple:{default:"true",description:"Apply the v-ripple directive.",type:"boolean | { class: string }",description_zh:"应用 v-ripple 指令。",value:""},rounded:{default:"false",description:"Applies the border-radius style to the specified component. You can get more information about this on the Corner Radius of Borders page",type:"string | number | boolean",description_zh:"对指定的组件应用 border-radius 样式。您可以在 边框的圆角半径页面 获取更多有关信息",value:""},subtitle:{default:"false",description:"Specify a subtitle text for the component.",type:"string | number | boolean",description_zh:"为组件指定字幕文本。",value:""},tag:{default:"div",description:"Specifies the custom label to be used on the root element.",type:"string",description_zh:"指定在根元素上使用的自定义标签。",value:""},theme:{default:"undefined",description:"Specify a theme for this component and all of its children.",type:"string",description_zh:"为该组件及其所有子组件指定一个主题。",value:""},title:{default:"false",description:"Generates a v-list-item-title component with the supplied value. Note that this overrides the native title attribute, that must be set with v-bind:title.attr instead.",type:"string | number | boolean",description_zh:"使用提供的值生成 v-list-item-title 组件。请注意，这将覆盖本地 title 属性，必须使用 v-bind:title.attr 设置。",value:""},to:{default:"undefined",description:"Represents the destination route of the link. You can read more about to prop in the vue-router documentation.",type:"unknown",description_zh:"表示链接的目标路由。你可以在 vue-router 文档浏览更多 to prop。",value:""},value:{default:"undefined",description:"The value used for selection.",type:"any",description_zh:"用于选择的值。",value:""},variant:{default:"text",description:"Applies a distinct style to the component.",type:"text / flat / elevated / tonal / outlined / plain",description_zh:"对组件应用不同的样式。",value:["text","flat","elevated","tonal","outlined","plain"]},width:{default:"undefined",description:"Sets the width of the component.",type:"string | number",description_zh:"设定组件的宽度。",value:""}},methods:[],typeDetail:{},events:[],link:"https://vuetifyjs.com/en/api/v-list-item/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-list-item/#links"},W={name:"VNoSsr",props:{},link:"https://vuetifyjs.com/zh-Hans/api/v-no-ssr/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-no-ssr/#links",typeDetail:{},events:[],methods:[],slots:[]},K={name:"VNumberInput",props:{active:{default:"false",value:"",type:"boolean",version:"",description:"Controls the active state of the item. This is typically used to highlight the component.",description_zh:"控制项的活动状态。这通常用于突出显示组件。",required:!1},"append-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Creates a v-icon component after default content in the append slot.",description_zh:"在附加插槽中的默认内容之后创建一个 v 图标组件。",required:!1},autofocus:{default:"false",value:"",type:"boolean",version:"",description:"Enables autofocus.",description_zh:"启用自动对焦。",required:!1},"base-color":{default:"undefined",value:"",type:"string",version:"",description:"Sets the color of the input when it is not focused.",description_zh:"设置输入未聚焦时的颜色。",required:!1},"bg-color":{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control’s background. Used on components that also support the color prop. - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件的背景。用于也支持 color 属性的组件。- 支持实用工具颜色（例如 Success 或 Purple）或 CSS 颜色（#033 或 RGBA（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},"center-affix":{default:"undefined",value:"",type:"boolean",version:"",description:"Vertically align appendInner, prependInner, clearIcon and label in the center.",description_zh:"将 appendInner、prependInner、clearIcon 和 label 垂直对齐在中心。",required:!1},clearable:{default:"false",value:"",type:"boolean",version:"",description:"Allows for the component to be cleared.",description_zh:"允许清除组件。",required:!1},"clear-icon":{default:"'$clear'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"The icon used when the clearable prop is set to true.",description_zh:"当 clearable prop 设置为 true 时使用的图标。",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},"control-variant":{default:"'default'",value:"",type:"default / stacked / split",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},counter:{default:"false",value:"",type:"string | number | boolean",version:"",description:"Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation.",description_zh:"为 input length 创建 counter;如果未指定数字，则默认为 25。不应用任何验证。",required:!1},"counter-value":{default:"undefined",value:"",type:"number | ((value: any) => number)",version:"",description:"Function returns the counter display text.",description_zh:"function 返回计数器显示文本。",required:!1},density:{default:"'default'",value:"",type:"default / comfortable / compact",version:"",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。",required:!1},direction:{default:"'horizontal'",value:"",type:"horizontal / vertical",version:"",description:"Changes the direction of the input.",description_zh:"更改输入的方向。",required:!1},dirty:{default:"false",value:"",type:"boolean",version:"",description:"Manually apply the dirty state styling.",description_zh:"手动应用 dirty state 样式。",required:!1},disabled:{default:"null",value:"",type:"boolean",version:"",description:"Removes the ability to click or target the input.",description_zh:"删除单击或定位输入的功能。",required:!1},error:{default:"false",value:"",type:"boolean",version:"",description:"Puts the input in a manual error state.",description_zh:"将输入置于手动错误状态。",required:!1},"error-messages":{default:"[]",value:"",type:"string | string[]",version:"",description:"Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the rules prop. This field will not trigger validation.",description_zh:"将输入置于错误状态并传递自定义错误消息。将与 rules prop 发生的任何验证相结合。此字段不会触发验证。",required:!1},flat:{default:"false",value:"",type:"boolean",version:"",description:"Removes box shadow when using a variant with elevation.",description_zh:"使用具有高程的变量时删除框阴影。",required:!1},focused:{default:"false",value:"",type:"boolean",version:"",description:"Forces a focused state styling on the component.",description_zh:"强制对组件进行 focused state 样式设置。",required:!1},"hide-details":{default:"false",value:"",type:"boolean / auto",version:"",description:"Hides hint and validation errors. When set to auto messages will be rendered only if there’s a message (hint, error message, counter value etc) to display.",description_zh:"隐藏提示和验证错误。当设置为 auto 时，仅当有消息 （提示、错误消息、计数器值等） 要显示时，才会呈现消息。",required:!1},"hide-input":{default:"false",value:"",type:"boolean",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},"hide-spin-buttons":{default:"false",value:"",type:"boolean",version:"",description:"Hides spin buttons on the input when type is set to number.",description_zh:"当 type 设置为 number 时，隐藏输入上的旋转按钮。",required:!1},hint:{default:"undefined",value:"",type:"string",version:"",description:"Displays hint text below the input when focused. Force this always open with the persistent-hint property.",description_zh:"聚焦时，在输入下方显示提示文本。使用 persistent-hint 属性强制 this always 打开。",required:!1},id:{default:"undefined",value:"",type:"string",version:"",description:"Sets the DOM id on the component.",description_zh:"设置组件上的 DOM ID。",required:!1},inset:{default:"false",value:"",type:"boolean",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},label:{default:"undefined",value:"",type:"string",version:"",description:"Sets the text of the v-label or v-field-label component.",description_zh:"设置 v-label 或 v-field-label 组件的文本。",required:!1},loading:{default:"false",value:"",type:"string | boolean",version:"",description:"Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - primary, secondary, success, info, warning, error) or a Boolean which uses the component color (set by color prop - if it’s supported by the component) or the primary color.",description_zh:"显示线性进度条。可以是指定应用于进度条的颜色的 String（任何材料颜色或主题颜色 - primary、secondary、success、info、warning、error），也可以是使用组件颜色（由 color 属性设置 - 如果组件支持）或主要颜色的 Boolean。",required:!1},":max":{default:"9007199254740991",value:"",type:"number",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},"max-errors":{default:"1",value:"",type:"string | number",version:"",description:"Control the maximum number of shown errors from validation.",description_zh:"控制验证时显示的错误的最大数量。",required:!1},"max-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。",required:!1},messages:{default:"[]",value:"",type:"string | string[]",version:"",description:"Displays a list of messages or a single message if using a string.",description_zh:"显示消息列表，如果使用字符串，则显示单个消息。",required:!1},":min":{default:"-9007199254740991",value:"",type:"number",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},"min-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum width for the component.",description_zh:"设置组件的最小宽度。",required:!1},"v-model":{default:"null",value:"",type:"Number",version:"",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v-model 值。如果 component 支持 multiple prop，则默认为空数组。",required:!1},name:{default:"undefined",value:"",type:"string",version:"",description:"Sets the component’s name attribute.",description_zh:"设置组件的 name 属性。",required:!1},"persistent-clear":{default:"false",value:"",type:"boolean",version:"",description:"Always show the clearable icon when the input is dirty (By default it only shows on hover).",description_zh:"当输入脏时，始终显示可清除图标（默认情况下，它仅在悬停时显示）。",required:!1},"persistent-counter":{default:"false",value:"",type:"boolean",version:"",description:"Forces counter to always be visible.",description_zh:"强制计数器始终可见。",required:!1},"persistent-hint":{default:"false",value:"",type:"boolean",version:"",description:"Forces hint to always be visible.",description_zh:"强制提示始终可见。",required:!1},"persistent-placeholder":{default:"false",value:"",type:"boolean",version:"",description:"Forces placeholder to always be visible.",description_zh:"强制占位符始终可见。",required:!1},placeholder:{default:"undefined",value:"",type:"string",version:"",description:"Sets the input’s placeholder text.",description_zh:"设置输入的占位符文本。",required:!1},prefix:{default:"undefined",value:"",type:"string",version:"",description:"Displays prefix text.",description_zh:"显示前缀文本。",required:!1},"prepend-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Prepends an icon to the outnside the component’s input, uses the same syntax as v-icon.",description_zh:"在组件输入的外部预置一个图标，使用与 v-icon 相同的语法。",required:!1},readonly:{default:"null",value:"",type:"boolean",version:"",description:"Puts input in readonly state.",description_zh:"将输入置于只读状态。",required:!1},reverse:{default:"false",value:"",type:"boolean",version:"",description:"Reverses the orientation.",description_zh:"反转方向。",required:!1},role:{default:"undefined",value:"",type:"string",version:"",description:"The role attribute applied to the input.",description_zh:"应用于输入的 role 属性。",required:!1},rounded:{default:"undefined",value:"",type:"string | number | boolean",version:"",description:"Adds a border radius to the input.",description_zh:"向输入添加边框半径。",required:!1},rules:{default:"[]",value:"",type:"ValidationRule[]",version:"",description:"Accepts a mixed array of types function, boolean and string. Functions pass an input value as an argument and must return either true / false or a string containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) false or is a string.",description_zh:"接受 function、boolean 和 string 类型的混合数组。函数将输入值作为参数传递，并且必须返回 true / false 或包含错误消息的字符串。如果函数返回 （或数组中的任何值包含） false 或为字符串，则输入字段将进入错误状态。",required:!1},"single-line":{default:"false",value:"",type:"boolean",version:"",description:"Label does not move on focus/dirty.",description_zh:"标签在聚焦/脏污时不移动。",required:!1},":step":{default:"1",value:"",type:"number",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},suffix:{default:"undefined",value:"",type:"string",version:"",description:"Displays suffix text.",description_zh:"显示后缀文本。",required:!1},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},tile:{default:"false",value:"",type:"boolean",version:"",description:"Removes any applied border-radius from the component.",description_zh:"从组件中删除任何应用的 border-radius。",required:!1},type:{default:"'text'",value:"",type:"string",version:"",description:"Sets input type.",description_zh:"设置输入类型。",required:!1},"validate-on":{default:"undefined",value:"",type:" / blur / input / submit / invalid-input / blur lazy / input lazy / submit lazy / invalid-input lazy / blur eager / input eager / submit eager / invalid-input eager / lazy blur / lazy input / lazy submit / lazy invalid-input / eager blur / eager input / eager submit / eager invalid-input / lazy / eager",version:"",description:"Change what type of event triggers validation to run.",description_zh:"更改触发验证的事件类型以运行。",required:!1},"validation-value":{default:"undefined",value:"",type:"any",version:"",description:"The value used when applying validation rules.",description_zh:"应用验证规则时使用的值。",required:!1},variant:{default:"'filled'",value:"",type:" / underlined / outlined / filled / solo / solo-inverted / solo-filled / plain",version:"",description:"Applies a distinct style to the component.",description_zh:"将不同的样式应用于组件。",required:!1},width:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the width for the component.",description_zh:"设置组件的宽度。",required:!1}},link:"https://vuetifyjs.com/en/api/v-number-input/",link_zh:"https://vuetifyjs.com/en/api/v-number-input/",typeDetail:{},events:[{name:"click:append",description:"Emitted when append icon is clicked.",description_zh:"单击附加图标时发出。",params:"[MouseEvent]",value:""},{name:"click:appendInner",description:"Emitted when appended inner icon is clicked.",description_zh:"单击附加的内部图标时发出。",params:"[MouseEvent]",value:""},{name:"click:clear",description:"Emitted when clearable icon clicked.",description_zh:"单击可清除图标时发出。",params:"[MouseEvent]",value:""},{name:"click:prepend",description:"Emitted when prepended icon is clicked.",description_zh:"单击前置图标时发出。",params:"[MouseEvent]",value:""},{name:"click:prependInner",description:"Emitted when prepended inner icon is clicked.",description_zh:"单击前置的内部图标时发出。",params:"[MouseEvent]",value:""},{name:"update:focused",description:"Emitted when the input is focused or blurred",description_zh:"当输入聚焦或模糊时发出",params:"[boolean]",value:""},{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件的模型更改时发出的事件。",params:"[number]",value:""}],methods:[],slots:[{name:"append",description:"Adds an item inside the input and after input content.",description_zh:"在 input 内容内和 After input 内容中添加一个项目。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"append-inner",description:"Adds an item inside the input content.",description_zh:"在输入内容中添加项目。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n}"},{name:"clear",description:"Slot for custom clear icon (displayed when the clearable prop is equal to true).",description_zh:"自定义 clear 图标的插槽（当 clearable prop 等于 true 时显示）。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n} & { props: Record<string, any> }"},{name:"counter",description:"Slot for the input’s counter text.",description_zh:"输入的计数器文本的插槽。",params:"{ counter: string; max: string | number; value: string | number }"},{name:"decrement",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{ click: (e: MouseEvent) => void }"},{name:"details",description:"Slot for custom input details to modifying the display of messages.",description_zh:"用于修改消息显示的自定义输入详细信息的插槽。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"increment",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{ click: (e: MouseEvent) => void }"},{name:"label",description:"The default slot of the v-label or v-field-label component.",description_zh:"v-label 或 v-field-label 组件的默认插槽。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n} & { label: string; props: Record<string, any> }"},{name:"loader",description:"Slot for custom loader (displayed when loading prop is equal to true).",description_zh:"自定义加载器的插槽（当加载 prop 等于 true 时显示）。",params:"{ color: string; isActive: boolean }"},{name:"message",description:"Slot used to customize the message content.",description_zh:"用于自定义消息内容的插槽。",params:"{ message: string }"},{name:"prepend",description:"Adds an item outside the input and before input content.",description_zh:"在输入内容之外和之前添加项目。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"prepend-inner",description:"Slot that is prepended to the input.",description_zh:"Slot 添加到输入的前缀。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n}"}],exposed:[{name:"accept",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"accessKey",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"accessKeyLabel",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"addEventListener",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"{\n  <K extends keyof HTMLElementEventMap>(\n    type: K,\n    listener: (this: HTMLInputElement, ev: HTMLElementEventMap[K]) => any,\n    options?: boolean | AddEventListenerOptions | undefined,\n  ): void\n  (\n    type: string,\n    listener: EventListenerOrEventListenerObject,\n    options?: boolean | AddEventListenerOptions | undefined,\n  ): void\n}"},{name:"after",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(...nodes: (string | Node)[]) => void"},{name:"align",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"alt",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"animate",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(\n  keyframes: Keyframe[] | PropertyIndexedKeyframes | null,\n  options?: number | KeyframeAnimationOptions | undefined,\n) => Animation"},{name:"append",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(...nodes: (string | Node)[]) => void"},{name:"appendChild",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"<T extends Node>(node: T) => T"},{name:"ariaAtomic",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaAutoComplete",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaBusy",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaChecked",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaColCount",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaColIndex",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaColSpan",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaCurrent",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaDisabled",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaExpanded",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaHasPopup",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaHidden",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaInvalid",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaKeyShortcuts",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaLabel",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaLevel",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaLive",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaModal",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaMultiLine",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaMultiSelectable",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaOrientation",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaPlaceholder",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaPosInSet",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaPressed",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaReadOnly",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaRequired",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaRoleDescription",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaRowCount",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaRowIndex",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaRowSpan",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaSelected",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaSetSize",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaSort",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaValueMax",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaValueMin",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaValueNow",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ariaValueText",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"assignedSlot",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"HTMLSlotElement"},{name:"attachInternals",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"() => ElementInternals"},{name:"attachShadow",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(init: ShadowRootInit) => ShadowRoot"},{name:"ATTRIBUTE_NODE",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"2"},{name:"attributes",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"{\n  [x: number]: Attr\n  readonly length: number\n  getNamedItem: (qualifiedName: string) => Attr | null\n  getNamedItemNS: (namespace: string | null, localName: string) => Attr | null\n  item: (index: number) => Attr | null\n  removeNamedItem: (qualifiedName: string) => Attr\n  removeNamedItemNS: (namespace: string | null, localName: string) => Attr\n  setNamedItem: (attr: Attr) => Attr | null\n  setNamedItemNS: (attr: Attr) => Attr | null\n  [Symbol.iterator]: () => IterableIterator<Attr>\n}"},{name:"attributeStyleMap",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"{\n  append: (property: string, ...values: (string | CSSStyleValue)[]) => void\n  clear: () => void\n  delete: (property: string) => void\n  set: (property: string, ...values: (string | CSSStyleValue)[]) => void\n  readonly size: number\n  get: (property: string) => CSSStyleValue | undefined\n  getAll: (property: string) => CSSStyleValue[]\n  has: (property: string) => boolean\n  forEach: (\n    callbackfn: (\n      value: CSSStyleValue[],\n      key: string,\n      parent: StylePropertyMapReadOnly,\n    ) => void,\n    thisArg?: any,\n  ) => void\n  entries: () => IterableIterator<[string, Iterable<CSSStyleValue>]>\n  keys: () => IterableIterator<string>\n  values: () => IterableIterator<Iterable<CSSStyleValue>>\n  [Symbol.iterator]: () => IterableIterator<[string, Iterable<CSSStyleValue>]>\n}"},{name:"autocapitalize",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"autocomplete",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"AutoFill"},{name:"autofocus",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"baseURI",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"before",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(...nodes: (string | Node)[]) => void"},{name:"blur",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"() => void"},{name:"capture",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"CDATA_SECTION_NODE",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"4"},{name:"checked",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"checkValidity",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"() => boolean"},{name:"checkVisibility",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(options?: CheckVisibilityOptions | undefined) => boolean"},{name:"childElementCount",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"number"},{name:"childNodes",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"{\n  [x: number]: ChildNode\n  item: (index: number) => ChildNode\n  forEach: (\n    callbackfn: (\n      value: ChildNode,\n      key: number,\n      parent: NodeListOf<ChildNode>,\n    ) => void,\n    thisArg?: any,\n  ) => void\n  entries: () => IterableIterator<[number, ChildNode]>\n  keys: () => IterableIterator<number>\n  values: () => IterableIterator<ChildNode>\n  [Symbol.iterator]: () => IterableIterator<ChildNode>\n  readonly length: number\n}"},{name:"children",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"{\n  [x: number]: Element\n  namedItem: (name: string) => Element | null\n  readonly length: number\n  item: (index: number) => Element | null\n  [Symbol.iterator]: () => IterableIterator<Element>\n}"},{name:"classList",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"{\n  [x: number]: string\n  readonly length: number\n  value: string\n  toString: () => string\n  add: (...tokens: string[]) => void\n  contains: (token: string) => boolean\n  item: (index: number) => string | null\n  remove: (...tokens: string[]) => void\n  replace: (token: string, newToken: string) => boolean\n  supports: (token: string) => boolean\n  toggle: (token: string, force?: boolean | undefined) => boolean\n  forEach: (\n    callbackfn: (value: string, key: number, parent: DOMTokenList) => void,\n    thisArg?: any,\n  ) => void\n  entries: () => IterableIterator<[number, string]>\n  keys: () => IterableIterator<number>\n  values: () => IterableIterator<string>\n  [Symbol.iterator]: () => IterableIterator<string>\n}"},{name:"className",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"click",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"() => void"},{name:"clientHeight",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"number"},{name:"clientLeft",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"number"},{name:"clientTop",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"number"},{name:"clientWidth",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"number"},{name:"cloneNode",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(deep?: boolean | undefined) => Node"},{name:"closest",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"{\n  <K extends keyof HTMLElementTagNameMap>(\n    selector: K,\n  ): HTMLElementTagNameMap[K] | null\n  <K extends keyof SVGElementTagNameMap>(\n    selector: K,\n  ): SVGElementTagNameMap[K] | null\n  <K extends keyof MathMLElementTagNameMap>(\n    selector: K,\n  ): MathMLElementTagNameMap[K] | null\n  <E extends Element = Element>(selectors: string): E | null\n}"},{name:"COMMENT_NODE",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"8"},{name:"compareDocumentPosition",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(other: Node) => number"},{name:"computedStyleMap",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"() => StylePropertyMapReadOnly"},{name:"contains",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(other: Node | null) => boolean"},{name:"contentEditable",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"controlRef",description:"Reference to the control element of the field.",description_zh:"Reference to the control element of the field.",detail:"HTMLElement"},{name:"dataset",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"DOMStringMap"},{name:"defaultChecked",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"defaultValue",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"dir",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"dirName",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"disabled",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"dispatchEvent",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(event: Event) => boolean"},{name:"DOCUMENT_FRAGMENT_NODE",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"11"},{name:"DOCUMENT_NODE",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"9"},{name:"DOCUMENT_POSITION_CONTAINED_BY",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"16"},{name:"DOCUMENT_POSITION_CONTAINS",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"8"},{name:"DOCUMENT_POSITION_DISCONNECTED",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"1"},{name:"DOCUMENT_POSITION_FOLLOWING",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"4"},{name:"DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"32"},{name:"DOCUMENT_POSITION_PRECEDING",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"2"},{name:"DOCUMENT_TYPE_NODE",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"10"},{name:"draggable",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"ELEMENT_NODE",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"1"},{name:"enterKeyHint",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ENTITY_NODE",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"6"},{name:"ENTITY_REFERENCE_NODE",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"5"},{name:"errorMessages",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string[]"},{name:"files",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"{\n  [x: number]: {\n    readonly lastModified: number\n    readonly name: string\n    readonly webkitRelativePath: string\n    readonly size: number\n    readonly type: string\n    arrayBuffer: () => Promise<ArrayBuffer>\n    slice: (\n      start?: number | undefined,\n      end?: number | undefined,\n      contentType?: string | undefined,\n    ) => Blob\n    stream: () => ReadableStream<Uint8Array>\n    text: () => Promise<string>\n  }\n  readonly length: number\n  item: (index: number) => File | null\n  [Symbol.iterator]: () => IterableIterator<File>\n}"},{name:"firstChild",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"ChildNode"},{name:"firstElementChild",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"Element"},{name:"focus",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(options?: FocusOptions | undefined) => void"},{name:"form",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"HTMLFormElement"},{name:"formAction",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"formEnctype",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"formMethod",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"formNoValidate",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"formTarget",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"getAnimations",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(options: GetAnimationsOptions) => Animation[]"},{name:"getAttribute",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(qualifiedName: string) => string | null"},{name:"getAttributeNames",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"() => string[]"},{name:"getAttributeNode",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(qualifiedName: string) => Attr | null"},{name:"getAttributeNodeNS",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(namespace: string | null, localName: string) => Attr | null"},{name:"getAttributeNS",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(namespace: string | null, localName: string) => string | null"},{name:"getBoundingClientRect",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"() => DOMRect"},{name:"getClientRects",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"() => DOMRectList"},{name:"getElementsByClassName",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(classNames: string) => HTMLCollectionOf<Element>"},{name:"getElementsByTagName",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"{\n  <K extends keyof HTMLElementTagNameMap>(\n    qualifiedName: K,\n  ): HTMLCollectionOf<HTMLElementTagNameMap[K]>\n  <K extends keyof SVGElementTagNameMap>(\n    qualifiedName: K,\n  ): HTMLCollectionOf<SVGElementTagNameMap[K]>\n  <K extends keyof MathMLElementTagNameMap>(\n    qualifiedName: K,\n  ): HTMLCollectionOf<MathMLElementTagNameMap[K]>\n  <K extends keyof HTMLElementDeprecatedTagNameMap>(\n    qualifiedName: K,\n  ): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>\n  (qualifiedName: string): HTMLCollectionOf<Element>\n}"},{name:"getElementsByTagNameNS",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"{\n  (\n    namespaceURI: 'http://www.w3.org/1999/xhtml',\n    localName: string,\n  ): HTMLCollectionOf<HTMLElement>\n  (\n    namespaceURI: 'http://www.w3.org/2000/svg',\n    localName: string,\n  ): HTMLCollectionOf<SVGElement>\n  (\n    namespaceURI: 'http://www.w3.org/1998/Math/MathML',\n    localName: string,\n  ): HTMLCollectionOf<MathMLElement>\n  (namespace: string | null, localName: string): HTMLCollectionOf<Element>\n}"},{name:"getRootNode",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(options?: GetRootNodeOptions | undefined) => Node"},{name:"hasAttribute",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(qualifiedName: string) => boolean"},{name:"hasAttributeNS",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(namespace: string | null, localName: string) => boolean"},{name:"hasAttributes",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"() => boolean"},{name:"hasChildNodes",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"() => boolean"},{name:"hasPointerCapture",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(pointerId: number) => boolean"},{name:"height",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"number"},{name:"hidden",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"hidePopover",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"() => void"},{name:"id",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"indeterminate",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"inert",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"innerHTML",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"innerText",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"inputMode",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"insertAdjacentElement",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(where: InsertPosition, element: Element) => Element | null"},{name:"insertAdjacentHTML",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(position: InsertPosition, text: string) => void"},{name:"insertAdjacentText",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(where: InsertPosition, data: string) => void"},{name:"insertBefore",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"<T extends Node>(node: T, child: Node | null) => T"},{name:"isConnected",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"isContentEditable",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"isDefaultNamespace",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(namespace: string | null) => boolean"},{name:"isEqualNode",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(otherNode: Node | null) => boolean"},{name:"isSameNode",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(otherNode: Node | null) => boolean"},{name:"isValid",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"labels",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"{\n  [x: number]: HTMLLabelElement\n  item: (index: number) => HTMLLabelElement\n  forEach: (\n    callbackfn: (\n      value: HTMLLabelElement,\n      key: number,\n      parent: NodeListOf<HTMLLabelElement>,\n    ) => void,\n    thisArg?: any,\n  ) => void\n  entries: () => IterableIterator<[number, HTMLLabelElement]>\n  keys: () => IterableIterator<number>\n  values: () => IterableIterator<HTMLLabelElement>\n  [Symbol.iterator]: () => IterableIterator<HTMLLabelElement>\n  readonly length: number\n}"},{name:"lang",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"lastChild",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"ChildNode"},{name:"lastElementChild",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"Element"},{name:"list",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"HTMLDataListElement"},{name:"localName",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"lookupNamespaceURI",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(prefix: string | null) => string | null"},{name:"lookupPrefix",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(namespace: string | null) => string | null"},{name:"matches",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(selectors: string) => boolean"},{name:"max",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"maxLength",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"number"},{name:"min",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"minLength",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"number"},{name:"multiple",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"name",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"namespaceURI",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"nextElementSibling",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"Element"},{name:"nextSibling",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"ChildNode"},{name:"nodeName",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"nodeType",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"number"},{name:"nodeValue",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"nonce",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"normalize",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"() => void"},{name:"NOTATION_NODE",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"12"},{name:"offsetHeight",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"number"},{name:"offsetLeft",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"number"},{name:"offsetParent",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"Element"},{name:"offsetTop",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"number"},{name:"offsetWidth",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"number"},{name:"onabort",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: UIEvent) => any"},{name:"onanimationcancel",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: AnimationEvent) => any"},{name:"onanimationend",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: AnimationEvent) => any"},{name:"onanimationiteration",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: AnimationEvent) => any"},{name:"onanimationstart",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: AnimationEvent) => any"},{name:"onauxclick",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: MouseEvent) => any"},{name:"onbeforeinput",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: InputEvent) => any"},{name:"onblur",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: FocusEvent) => any"},{name:"oncancel",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"oncanplay",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"oncanplaythrough",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"onchange",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"onclick",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: MouseEvent) => any"},{name:"onclose",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"oncontextmenu",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: MouseEvent) => any"},{name:"oncopy",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: ClipboardEvent) => any"},{name:"oncuechange",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"oncut",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: ClipboardEvent) => any"},{name:"ondblclick",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: MouseEvent) => any"},{name:"ondrag",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: DragEvent) => any"},{name:"ondragend",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: DragEvent) => any"},{name:"ondragenter",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: DragEvent) => any"},{name:"ondragleave",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: DragEvent) => any"},{name:"ondragover",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: DragEvent) => any"},{name:"ondragstart",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: DragEvent) => any"},{name:"ondrop",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: DragEvent) => any"},{name:"ondurationchange",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"onemptied",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"onended",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"onerror",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"OnErrorEventHandler"},{name:"onfocus",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: FocusEvent) => any"},{name:"onformdata",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: FormDataEvent) => any"},{name:"onfullscreenchange",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: Element, ev: Event) => any"},{name:"onfullscreenerror",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: Element, ev: Event) => any"},{name:"ongotpointercapture",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: PointerEvent) => any"},{name:"oninput",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"oninvalid",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"onkeydown",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: KeyboardEvent) => any"},{name:"onkeypress",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: KeyboardEvent) => any"},{name:"onkeyup",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: KeyboardEvent) => any"},{name:"onload",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"onloadeddata",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"onloadedmetadata",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"onloadstart",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"onlostpointercapture",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: PointerEvent) => any"},{name:"onmousedown",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: MouseEvent) => any"},{name:"onmouseenter",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: MouseEvent) => any"},{name:"onmouseleave",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: MouseEvent) => any"},{name:"onmousemove",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: MouseEvent) => any"},{name:"onmouseout",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: MouseEvent) => any"},{name:"onmouseover",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: MouseEvent) => any"},{name:"onmouseup",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: MouseEvent) => any"},{name:"onpaste",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: ClipboardEvent) => any"},{name:"onpause",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"onplay",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"onplaying",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"onpointercancel",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: PointerEvent) => any"},{name:"onpointerdown",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: PointerEvent) => any"},{name:"onpointerenter",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: PointerEvent) => any"},{name:"onpointerleave",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: PointerEvent) => any"},{name:"onpointermove",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: PointerEvent) => any"},{name:"onpointerout",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: PointerEvent) => any"},{name:"onpointerover",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: PointerEvent) => any"},{name:"onpointerup",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: PointerEvent) => any"},{name:"onprogress",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any"},{name:"onratechange",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"onreset",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"onresize",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: UIEvent) => any"},{name:"onscroll",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"onscrollend",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"onsecuritypolicyviolation",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any"},{name:"onseeked",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"onseeking",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"onselect",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"onselectionchange",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"onselectstart",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"onslotchange",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"onstalled",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"onsubmit",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: SubmitEvent) => any"},{name:"onsuspend",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"ontimeupdate",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"ontoggle",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"ontouchcancel",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: TouchEvent) => any"},{name:"ontouchend",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: TouchEvent) => any"},{name:"ontouchmove",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: TouchEvent) => any"},{name:"ontouchstart",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: TouchEvent) => any"},{name:"ontransitioncancel",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: TransitionEvent) => any"},{name:"ontransitionend",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: TransitionEvent) => any"},{name:"ontransitionrun",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: TransitionEvent) => any"},{name:"ontransitionstart",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: TransitionEvent) => any"},{name:"onvolumechange",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"onwaiting",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"onwebkitanimationend",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"onwebkitanimationiteration",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"onwebkitanimationstart",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"onwebkittransitionend",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: Event) => any"},{name:"onwheel",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(this: GlobalEventHandlers, ev: WheelEvent) => any"},{name:"outerHTML",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"outerText",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"ownerDocument",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"Document"},{name:"parentElement",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"HTMLElement"},{name:"parentNode",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"ParentNode"},{name:"part",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"{\n  [x: number]: string\n  readonly length: number\n  value: string\n  toString: () => string\n  add: (...tokens: string[]) => void\n  contains: (token: string) => boolean\n  item: (index: number) => string | null\n  remove: (...tokens: string[]) => void\n  replace: (token: string, newToken: string) => boolean\n  supports: (token: string) => boolean\n  toggle: (token: string, force?: boolean | undefined) => boolean\n  forEach: (\n    callbackfn: (value: string, key: number, parent: DOMTokenList) => void,\n    thisArg?: any,\n  ) => void\n  entries: () => IterableIterator<[number, string]>\n  keys: () => IterableIterator<number>\n  values: () => IterableIterator<string>\n  [Symbol.iterator]: () => IterableIterator<string>\n}"},{name:"pattern",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"placeholder",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"popover",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"popoverTargetAction",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"popoverTargetElement",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"Element"},{name:"prefix",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"prepend",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(...nodes: (string | Node)[]) => void"},{name:"previousElementSibling",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"Element"},{name:"previousSibling",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"ChildNode"},{name:"PROCESSING_INSTRUCTION_NODE",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"7"},{name:"querySelector",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"{\n  <K extends keyof HTMLElementTagNameMap>(\n    selectors: K,\n  ): HTMLElementTagNameMap[K] | null\n  <K extends keyof SVGElementTagNameMap>(\n    selectors: K,\n  ): SVGElementTagNameMap[K] | null\n  <K extends keyof MathMLElementTagNameMap>(\n    selectors: K,\n  ): MathMLElementTagNameMap[K] | null\n  <K extends keyof HTMLElementDeprecatedTagNameMap>(\n    selectors: K,\n  ): HTMLElementDeprecatedTagNameMap[K] | null\n  <E extends Element = Element>(selectors: string): E | null\n}"},{name:"querySelectorAll",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"{\n  <K extends keyof HTMLElementTagNameMap>(\n    selectors: K,\n  ): NodeListOf<HTMLElementTagNameMap[K]>\n  <K extends keyof SVGElementTagNameMap>(\n    selectors: K,\n  ): NodeListOf<SVGElementTagNameMap[K]>\n  <K extends keyof MathMLElementTagNameMap>(\n    selectors: K,\n  ): NodeListOf<MathMLElementTagNameMap[K]>\n  <K extends keyof HTMLElementDeprecatedTagNameMap>(\n    selectors: K,\n  ): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>\n  <E extends Element = Element>(selectors: string): NodeListOf<E>\n}"},{name:"readOnly",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"releasePointerCapture",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(pointerId: number) => void"},{name:"remove",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"() => void"},{name:"removeAttribute",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(qualifiedName: string) => void"},{name:"removeAttributeNode",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(attr: Attr) => Attr"},{name:"removeAttributeNS",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(namespace: string | null, localName: string) => void"},{name:"removeChild",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"<T extends Node>(child: T) => T"},{name:"removeEventListener",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"{\n  <K extends keyof HTMLElementEventMap>(\n    type: K,\n    listener: (this: HTMLInputElement, ev: HTMLElementEventMap[K]) => any,\n    options?: boolean | EventListenerOptions | undefined,\n  ): void\n  (\n    type: string,\n    listener: EventListenerOrEventListenerObject,\n    options?: boolean | EventListenerOptions | undefined,\n  ): void\n}"},{name:"replaceChild",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"<T extends Node>(node: Node, child: T) => T"},{name:"replaceChildren",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(...nodes: (string | Node)[]) => void"},{name:"replaceWith",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(...nodes: (string | Node)[]) => void"},{name:"reportValidity",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"() => boolean"},{name:"requestFullscreen",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(options?: FullscreenOptions | undefined) => Promise<void>"},{name:"requestPointerLock",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"() => void"},{name:"required",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"reset",description:"Resets the input value.",description_zh:"Resets the input value.",detail:"() => Promise<void>"},{name:"resetValidation",description:"Resets validation of the input without modifying its value.",description_zh:"Resets validation of the input without modifying its value.",detail:"() => Promise<void>"},{name:"role",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"scroll",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"{\n  (options?: ScrollToOptions | undefined): void\n  (x: number, y: number): void\n}"},{name:"scrollBy",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"{\n  (options?: ScrollToOptions | undefined): void\n  (x: number, y: number): void\n}"},{name:"scrollHeight",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"number"},{name:"scrollIntoView",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(arg?: boolean | ScrollIntoViewOptions | undefined) => void"},{name:"scrollLeft",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"number"},{name:"scrollTo",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"{\n  (options?: ScrollToOptions | undefined): void\n  (x: number, y: number): void\n}"},{name:"scrollTop",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"number"},{name:"scrollWidth",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"number"},{name:"select",description:"The function used to select an items. The first argument expects the value of the item.",description_zh:"The function used to select an items. The first argument expects the value of the item.",detail:"() => void"},{name:"selectionDirection",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"'forward' | 'backward' | 'none'"},{name:"selectionEnd",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"number"},{name:"selectionStart",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"number"},{name:"setAttribute",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(qualifiedName: string, value: string) => void"},{name:"setAttributeNode",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(attr: Attr) => Attr | null"},{name:"setAttributeNodeNS",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(attr: Attr) => Attr | null"},{name:"setAttributeNS",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(\n  namespace: string | null,\n  qualifiedName: string,\n  value: string,\n) => void"},{name:"setCustomValidity",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(error: string) => void"},{name:"setPointerCapture",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(pointerId: number) => void"},{name:"setRangeText",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"{\n  (replacement: string): void\n  (\n    replacement: string,\n    start: number,\n    end: number,\n    selectionMode?: SelectionMode | undefined,\n  ): void\n}"},{name:"setSelectionRange",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(\n  start: number | null,\n  end: number | null,\n  direction?: 'forward' | 'backward' | 'none' | undefined,\n) => void"},{name:"shadowRoot",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"ShadowRoot"},{name:"showPicker",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"() => void"},{name:"showPopover",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"() => void"},{name:"size",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"number"},{name:"slot",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"spellcheck",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"src",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"step",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"stepDown",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(n?: number | undefined) => void"},{name:"stepUp",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(n?: number | undefined) => void"},{name:"style",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"{\n  [x: number]: string\n  accentColor: string\n  alignContent: string\n  alignItems: string\n  alignSelf: string\n  alignmentBaseline: string\n  all: string\n  animation: string\n  animationComposition: string\n  animationDelay: string\n  animationDirection: string\n  animationDuration: string\n  animationFillMode: string\n  animationIterationCount: string\n  animationName: string\n  animationPlayState: string\n  animationTimingFunction: string\n  appearance: string\n  aspectRatio: string\n  backdropFilter: string\n  backfaceVisibility: string\n  background: string\n  backgroundAttachment: string\n  backgroundBlendMode: string\n  backgroundClip: string\n  backgroundColor: string\n  backgroundImage: string\n  backgroundOrigin: string\n  backgroundPosition: string\n  backgroundPositionX: string\n  backgroundPositionY: string\n  backgroundRepeat: string\n  backgroundSize: string\n  baselineShift: string\n  blockSize: string\n  border: string\n  borderBlock: string\n  borderBlockColor: string\n  borderBlockEnd: string\n  borderBlockEndColor: string\n  borderBlockEndStyle: string\n  borderBlockEndWidth: string\n  borderBlockStart: string\n  borderBlockStartColor: string\n  borderBlockStartStyle: string\n  borderBlockStartWidth: string\n  borderBlockStyle: string\n  borderBlockWidth: string\n  borderBottom: string\n  borderBottomColor: string\n  borderBottomLeftRadius: string\n  borderBottomRightRadius: string\n  borderBottomStyle: string\n  borderBottomWidth: string\n  borderCollapse: string\n  borderColor: string\n  borderEndEndRadius: string\n  borderEndStartRadius: string\n  borderImage: string\n  borderImageOutset: string\n  borderImageRepeat: string\n  borderImageSlice: string\n  borderImageSource: string\n  borderImageWidth: string\n  borderInline: string\n  borderInlineColor: string\n  borderInlineEnd: string\n  borderInlineEndColor: string\n  borderInlineEndStyle: string\n  borderInlineEndWidth: string\n  borderInlineStart: string\n  borderInlineStartColor: string\n  borderInlineStartStyle: string\n  borderInlineStartWidth: string\n  borderInlineStyle: string\n  borderInlineWidth: string\n  borderLeft: string\n  borderLeftColor: string\n  borderLeftStyle: string\n  borderLeftWidth: string\n  borderRadius: string\n  borderRight: string\n  borderRightColor: string\n  borderRightStyle: string\n  borderRightWidth: string\n  borderSpacing: string\n  borderStartEndRadius: string\n  borderStartStartRadius: string\n  borderStyle: string\n  borderTop: string\n  borderTopColor: string\n  borderTopLeftRadius: string\n  borderTopRightRadius: string\n  borderTopStyle: string\n  borderTopWidth: string\n  borderWidth: string\n  bottom: string\n  boxShadow: string\n  boxSizing: string\n  breakAfter: string\n  breakBefore: string\n  breakInside: string\n  captionSide: string\n  caretColor: string\n  clear: string\n  clip: string\n  clipPath: string\n  clipRule: string\n  color: string\n  colorInterpolation: string\n  colorInterpolationFilters: string\n  colorScheme: string\n  columnCount: string\n  columnFill: string\n  columnGap: string\n  columnRule: string\n  columnRuleColor: string\n  columnRuleStyle: string\n  columnRuleWidth: string\n  columnSpan: string\n  columnWidth: string\n  columns: string\n  contain: string\n  containIntrinsicBlockSize: string\n  containIntrinsicHeight: string\n  containIntrinsicInlineSize: string\n  containIntrinsicSize: string\n  containIntrinsicWidth: string\n  container: string\n  containerName: string\n  containerType: string\n  content: string\n  counterIncrement: string\n  counterReset: string\n  counterSet: string\n  cssFloat: string\n  cssText: string\n  cursor: string\n  direction: string\n  display: string\n  dominantBaseline: string\n  emptyCells: string\n  fill: string\n  fillOpacity: string\n  fillRule: string\n  filter: string\n  flex: string\n  flexBasis: string\n  flexDirection: string\n  flexFlow: string\n  flexGrow: string\n  flexShrink: string\n  flexWrap: string\n  float: string\n  floodColor: string\n  floodOpacity: string\n  font: string\n  fontFamily: string\n  fontFeatureSettings: string\n  fontKerning: string\n  fontOpticalSizing: string\n  fontPalette: string\n  fontSize: string\n  fontSizeAdjust: string\n  fontStretch: string\n  fontStyle: string\n  fontSynthesis: string\n  fontSynthesisSmallCaps: string\n  fontSynthesisStyle: string\n  fontSynthesisWeight: string\n  fontVariant: string\n  fontVariantAlternates: string\n  fontVariantCaps: string\n  fontVariantEastAsian: string\n  fontVariantLigatures: string\n  fontVariantNumeric: string\n  fontVariantPosition: string\n  fontVariationSettings: string\n  fontWeight: string\n  forcedColorAdjust: string\n  gap: string\n  grid: string\n  gridArea: string\n  gridAutoColumns: string\n  gridAutoFlow: string\n  gridAutoRows: string\n  gridColumn: string\n  gridColumnEnd: string\n  gridColumnGap: string\n  gridColumnStart: string\n  gridGap: string\n  gridRow: string\n  gridRowEnd: string\n  gridRowGap: string\n  gridRowStart: string\n  gridTemplate: string\n  gridTemplateAreas: string\n  gridTemplateColumns: string\n  gridTemplateRows: string\n  height: string\n  hyphenateCharacter: string\n  hyphens: string\n  imageOrientation: string\n  imageRendering: string\n  inlineSize: string\n  inset: string\n  insetBlock: string\n  insetBlockEnd: string\n  insetBlockStart: string\n  insetInline: string\n  insetInlineEnd: string\n  insetInlineStart: string\n  isolation: string\n  justifyContent: string\n  justifyItems: string\n  justifySelf: string\n  left: string\n  readonly length: number\n  letterSpacing: string\n  lightingColor: string\n  lineBreak: string\n  lineHeight: string\n  listStyle: string\n  listStyleImage: string\n  listStylePosition: string\n  listStyleType: string\n  margin: string\n  marginBlock: string\n  marginBlockEnd: string\n  marginBlockStart: string\n  marginBottom: string\n  marginInline: string\n  marginInlineEnd: string\n  marginInlineStart: string\n  marginLeft: string\n  marginRight: string\n  marginTop: string\n  marker: string\n  markerEnd: string\n  markerMid: string\n  markerStart: string\n  mask: string\n  maskClip: string\n  maskComposite: string\n  maskImage: string\n  maskMode: string\n  maskOrigin: string\n  maskPosition: string\n  maskRepeat: string\n  maskSize: string\n  maskType: string\n  mathStyle: string\n  maxBlockSize: string\n  maxHeight: string\n  maxInlineSize: string\n  maxWidth: string\n  minBlockSize: string\n  minHeight: string\n  minInlineSize: string\n  minWidth: string\n  mixBlendMode: string\n  objectFit: string\n  objectPosition: string\n  offset: string\n  offsetDistance: string\n  offsetPath: string\n  offsetRotate: string\n  opacity: string\n  order: string\n  orphans: string\n  outline: string\n  outlineColor: string\n  outlineOffset: string\n  outlineStyle: string\n  outlineWidth: string\n  overflow: string\n  overflowAnchor: string\n  overflowClipMargin: string\n  overflowWrap: string\n  overflowX: string\n  overflowY: string\n  overscrollBehavior: string\n  overscrollBehaviorBlock: string\n  overscrollBehaviorInline: string\n  overscrollBehaviorX: string\n  overscrollBehaviorY: string\n  padding: string\n  paddingBlock: string\n  paddingBlockEnd: string\n  paddingBlockStart: string\n  paddingBottom: string\n  paddingInline: string\n  paddingInlineEnd: string\n  paddingInlineStart: string\n  paddingLeft: string\n  paddingRight: string\n  paddingTop: string\n  page: string\n  pageBreakAfter: string\n  pageBreakBefore: string\n  pageBreakInside: string\n  paintOrder: string\n  readonly parentRule: {\n    cssText: string\n    readonly parentRule: any | null\n    readonly parentStyleSheet: {\n      readonly cssRules: {\n        [x: number]: any\n        readonly length: number\n        item: (index: number) => CSSRule | null\n        [Symbol.iterator]: () => IterableIterator<CSSRule>\n      }\n      readonly ownerRule: any | null\n      readonly rules: {\n        [x: number]: any\n        readonly length: number\n        item: (index: number) => CSSRule | null\n        [Symbol.iterator]: () => IterableIterator<CSSRule>\n      }\n      addRule: (\n        selector?: string | undefined,\n        style?: string | undefined,\n        index?: number | undefined,\n      ) => number\n      deleteRule: (index: number) => void\n      insertRule: (rule: string, index?: number | undefined) => number\n      removeRule: (index?: number | undefined) => void\n      replace: (text: string) => Promise<CSSStyleSheet>\n      replaceSync: (text: string) => void\n      disabled: boolean\n      readonly href: string | null\n      readonly media: {\n        [x: number]: string\n        readonly length: number\n        mediaText: string\n        toString: () => string\n        appendMedium: (medium: string) => void\n        deleteMedium: (medium: string) => void\n        item: (index: number) => string | null\n        [Symbol.iterator]: () => IterableIterator<string>\n      }\n      readonly ownerNode: Element | ProcessingInstruction | null\n      readonly parentStyleSheet: any | null\n      readonly title: string | null\n      readonly type: string\n    } | null\n    readonly type: number\n    readonly STYLE_RULE: 1\n    readonly CHARSET_RULE: 2\n    readonly IMPORT_RULE: 3\n    readonly MEDIA_RULE: 4\n    readonly FONT_FACE_RULE: 5\n    readonly PAGE_RULE: 6\n    readonly NAMESPACE_RULE: 10\n    readonly KEYFRAMES_RULE: 7\n    readonly KEYFRAME_RULE: 8\n    readonly SUPPORTS_RULE: 12\n  } | null\n  perspective: string\n  perspectiveOrigin: string\n  placeContent: string\n  placeItems: string\n  placeSelf: string\n  pointerEvents: string\n  position: string\n  printColorAdjust: string\n  quotes: string\n  resize: string\n  right: string\n  rotate: string\n  rowGap: string\n  rubyPosition: string\n  scale: string\n  scrollBehavior: string\n  scrollMargin: string\n  scrollMarginBlock: string\n  scrollMarginBlockEnd: string\n  scrollMarginBlockStart: string\n  scrollMarginBottom: string\n  scrollMarginInline: string\n  scrollMarginInlineEnd: string\n  scrollMarginInlineStart: string\n  scrollMarginLeft: string\n  scrollMarginRight: string\n  scrollMarginTop: string\n  scrollPadding: string\n  scrollPaddingBlock: string\n  scrollPaddingBlockEnd: string\n  scrollPaddingBlockStart: string\n  scrollPaddingBottom: string\n  scrollPaddingInline: string\n  scrollPaddingInlineEnd: string\n  scrollPaddingInlineStart: string\n  scrollPaddingLeft: string\n  scrollPaddingRight: string\n  scrollPaddingTop: string\n  scrollSnapAlign: string\n  scrollSnapStop: string\n  scrollSnapType: string\n  scrollbarGutter: string\n  shapeImageThreshold: string\n  shapeMargin: string\n  shapeOutside: string\n  shapeRendering: string\n  stopColor: string\n  stopOpacity: string\n  stroke: string\n  strokeDasharray: string\n  strokeDashoffset: string\n  strokeLinecap: string\n  strokeLinejoin: string\n  strokeMiterlimit: string\n  strokeOpacity: string\n  strokeWidth: string\n  tabSize: string\n  tableLayout: string\n  textAlign: string\n  textAlignLast: string\n  textAnchor: string\n  textCombineUpright: string\n  textDecoration: string\n  textDecorationColor: string\n  textDecorationLine: string\n  textDecorationSkipInk: string\n  textDecorationStyle: string\n  textDecorationThickness: string\n  textEmphasis: string\n  textEmphasisColor: string\n  textEmphasisPosition: string\n  textEmphasisStyle: string\n  textIndent: string\n  textOrientation: string\n  textOverflow: string\n  textRendering: string\n  textShadow: string\n  textTransform: string\n  textUnderlineOffset: string\n  textUnderlinePosition: string\n  top: string\n  touchAction: string\n  transform: string\n  transformBox: string\n  transformOrigin: string\n  transformStyle: string\n  transition: string\n  transitionDelay: string\n  transitionDuration: string\n  transitionProperty: string\n  transitionTimingFunction: string\n  translate: string\n  unicodeBidi: string\n  userSelect: string\n  verticalAlign: string\n  visibility: string\n  webkitAlignContent: string\n  webkitAlignItems: string\n  webkitAlignSelf: string\n  webkitAnimation: string\n  webkitAnimationDelay: string\n  webkitAnimationDirection: string\n  webkitAnimationDuration: string\n  webkitAnimationFillMode: string\n  webkitAnimationIterationCount: string\n  webkitAnimationName: string\n  webkitAnimationPlayState: string\n  webkitAnimationTimingFunction: string\n  webkitAppearance: string\n  webkitBackfaceVisibility: string\n  webkitBackgroundClip: string\n  webkitBackgroundOrigin: string\n  webkitBackgroundSize: string\n  webkitBorderBottomLeftRadius: string\n  webkitBorderBottomRightRadius: string\n  webkitBorderRadius: string\n  webkitBorderTopLeftRadius: string\n  webkitBorderTopRightRadius: string\n  webkitBoxAlign: string\n  webkitBoxFlex: string\n  webkitBoxOrdinalGroup: string\n  webkitBoxOrient: string\n  webkitBoxPack: string\n  webkitBoxShadow: string\n  webkitBoxSizing: string\n  webkitFilter: string\n  webkitFlex: string\n  webkitFlexBasis: string\n  webkitFlexDirection: string\n  webkitFlexFlow: string\n  webkitFlexGrow: string\n  webkitFlexShrink: string\n  webkitFlexWrap: string\n  webkitJustifyContent: string\n  webkitLineClamp: string\n  webkitMask: string\n  webkitMaskBoxImage: string\n  webkitMaskBoxImageOutset: string\n  webkitMaskBoxImageRepeat: string\n  webkitMaskBoxImageSlice: string\n  webkitMaskBoxImageSource: string\n  webkitMaskBoxImageWidth: string\n  webkitMaskClip: string\n  webkitMaskComposite: string\n  webkitMaskImage: string\n  webkitMaskOrigin: string\n  webkitMaskPosition: string\n  webkitMaskRepeat: string\n  webkitMaskSize: string\n  webkitOrder: string\n  webkitPerspective: string\n  webkitPerspectiveOrigin: string\n  webkitTextFillColor: string\n  webkitTextSizeAdjust: string\n  webkitTextStroke: string\n  webkitTextStrokeColor: string\n  webkitTextStrokeWidth: string\n  webkitTransform: string\n  webkitTransformOrigin: string\n  webkitTransformStyle: string\n  webkitTransition: string\n  webkitTransitionDelay: string\n  webkitTransitionDuration: string\n  webkitTransitionProperty: string\n  webkitTransitionTimingFunction: string\n  webkitUserSelect: string\n  whiteSpace: string\n  widows: string\n  width: string\n  willChange: string\n  wordBreak: string\n  wordSpacing: string\n  wordWrap: string\n  writingMode: string\n  zIndex: string\n  getPropertyPriority: (property: string) => string\n  getPropertyValue: (property: string) => string\n  item: (index: number) => string\n  removeProperty: (property: string) => string\n  setProperty: (\n    property: string,\n    value: string | null,\n    priority?: string | undefined,\n  ) => void\n  [Symbol.iterator]: () => IterableIterator<string>\n}"},{name:"tabIndex",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"number"},{name:"tagName",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"TEXT_NODE",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"3"},{name:"textContent",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"title",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"toggleAttribute",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(qualifiedName: string, force?: boolean | undefined) => boolean"},{name:"togglePopover",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(force?: boolean | undefined) => void"},{name:"translate",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"type",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"useMap",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"validate",description:"Validates the input’s value.",description_zh:"Validates the input’s value.",detail:"(silent: boolean) => Promise<string[]>"},{name:"validationMessage",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"validity",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"{\n  readonly badInput: boolean\n  readonly customError: boolean\n  readonly patternMismatch: boolean\n  readonly rangeOverflow: boolean\n  readonly rangeUnderflow: boolean\n  readonly stepMismatch: boolean\n  readonly tooLong: boolean\n  readonly tooShort: boolean\n  readonly typeMismatch: boolean\n  readonly valid: boolean\n  readonly valueMissing: boolean\n}"},{name:"value",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string"},{name:"valueAsDate",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"{\n  toString: () => string\n  toDateString: () => string\n  toTimeString: () => string\n  toLocaleString: {\n    (): string\n    (\n      locales?: string | string[] | undefined,\n      options?: Intl.DateTimeFormatOptions | undefined,\n    ): string\n    (\n      locales?: Intl.LocalesArgument,\n      options?: Intl.DateTimeFormatOptions | undefined,\n    ): string\n  }\n  toLocaleDateString: {\n    (): string\n    (\n      locales?: string | string[] | undefined,\n      options?: Intl.DateTimeFormatOptions | undefined,\n    ): string\n    (\n      locales?: Intl.LocalesArgument,\n      options?: Intl.DateTimeFormatOptions | undefined,\n    ): string\n  }\n  toLocaleTimeString: {\n    (): string\n    (\n      locales?: string | string[] | undefined,\n      options?: Intl.DateTimeFormatOptions | undefined,\n    ): string\n    (\n      locales?: Intl.LocalesArgument,\n      options?: Intl.DateTimeFormatOptions | undefined,\n    ): string\n  }\n  valueOf: () => number\n  getTime: () => number\n  getFullYear: () => number\n  getUTCFullYear: () => number\n  getMonth: () => number\n  getUTCMonth: () => number\n  getDate: () => number\n  getUTCDate: () => number\n  getDay: () => number\n  getUTCDay: () => number\n  getHours: () => number\n  getUTCHours: () => number\n  getMinutes: () => number\n  getUTCMinutes: () => number\n  getSeconds: () => number\n  getUTCSeconds: () => number\n  getMilliseconds: () => number\n  getUTCMilliseconds: () => number\n  getTimezoneOffset: () => number\n  setTime: (time: number) => number\n  setMilliseconds: (ms: number) => number\n  setUTCMilliseconds: (ms: number) => number\n  setSeconds: (sec: number, ms?: number | undefined) => number\n  setUTCSeconds: (sec: number, ms?: number | undefined) => number\n  setMinutes: (\n    min: number,\n    sec?: number | undefined,\n    ms?: number | undefined,\n  ) => number\n  setUTCMinutes: (\n    min: number,\n    sec?: number | undefined,\n    ms?: number | undefined,\n  ) => number\n  setHours: (\n    hours: number,\n    min?: number | undefined,\n    sec?: number | undefined,\n    ms?: number | undefined,\n  ) => number\n  setUTCHours: (\n    hours: number,\n    min?: number | undefined,\n    sec?: number | undefined,\n    ms?: number | undefined,\n  ) => number\n  setDate: (date: number) => number\n  setUTCDate: (date: number) => number\n  setMonth: (month: number, date?: number | undefined) => number\n  setUTCMonth: (month: number, date?: number | undefined) => number\n  setFullYear: (\n    year: number,\n    month?: number | undefined,\n    date?: number | undefined,\n  ) => number\n  setUTCFullYear: (\n    year: number,\n    month?: number | undefined,\n    date?: number | undefined,\n  ) => number\n  toUTCString: () => string\n  toISOString: () => string\n  toJSON: (key?: any) => string\n  [Symbol.toPrimitive]: {\n    (hint: 'default'): string\n    (hint: 'string'): string\n    (hint: 'number'): number\n    (hint: string): string | number\n  }\n}"},{name:"valueAsNumber",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"number"},{name:"webkitdirectory",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"webkitEntries",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"{\n  readonly filesystem: {\n    readonly name: string\n    readonly root: {\n      createReader: () => FileSystemDirectoryReader\n      getDirectory: (\n        path?: string | null | undefined,\n        options?: FileSystemFlags | undefined,\n        successCallback?: FileSystemEntryCallback | undefined,\n        errorCallback?: ErrorCallback | undefined,\n      ) => void\n      getFile: (\n        path?: string | null | undefined,\n        options?: FileSystemFlags | undefined,\n        successCallback?: FileSystemEntryCallback | undefined,\n        errorCallback?: ErrorCallback | undefined,\n      ) => void\n      readonly filesystem: any\n      readonly fullPath: string\n      readonly isDirectory: boolean\n      readonly isFile: boolean\n      readonly name: string\n      getParent: (\n        successCallback?: FileSystemEntryCallback | undefined,\n        errorCallback?: ErrorCallback | undefined,\n      ) => void\n    }\n  }\n  readonly fullPath: string\n  readonly isDirectory: boolean\n  readonly isFile: boolean\n  readonly name: string\n  getParent: (\n    successCallback?: FileSystemEntryCallback | undefined,\n    errorCallback?: ErrorCallback | undefined,\n  ) => void\n}[]"},{name:"webkitMatchesSelector",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(selectors: string) => boolean"},{name:"width",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"number"},{name:"willValidate",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"}]},X={name:"VOtpInput",props:{autofocus:{default:"false",value:"",type:"boolean",version:"",description:"Automatically focuses the first input on page load",description_zh:"自动将第一个输入的重点放在页面加载上",required:!1},"base-color":{default:"undefined",value:"",type:"string",version:"",description:"Sets the color of the input when it is not focused.",description_zh:"设置输入未聚焦时的颜色。",required:!1},"bg-color":{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control’s background. Used on components that also support the color prop. - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件的背景。用于也支持 color 属性的组件。- 支持实用工具颜色（例如 Success 或 Purple）或 CSS 颜色（#033 或 RGBA（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},disabled:{default:"null",value:"",type:"boolean",version:"",description:"Removes the ability to click or target the input.",description_zh:"删除单击或定位输入的功能。",required:!1},divider:{default:"undefined",value:"",type:"string",version:"",description:"Specifies the dividing character between items.",description_zh:"指定项之间的分隔字符。",required:!1},error:{default:"false",value:"",type:"boolean",version:"",description:"Puts the input in a manual error state.",description_zh:"将输入置于手动错误状态。",required:!1},"focus-all":{default:"false",value:"",type:"boolean",version:"",description:"Puts all inputs into a focus state when any are focused",description_zh:"当任何输入聚焦时，将所有输入置于焦点状态",required:!1},focused:{default:"false",value:"",type:"boolean",version:"",description:"Forces a focused state styling on the component.",description_zh:"强制对组件进行 focused state 样式设置。",required:!1},height:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the height for the component.",description_zh:"设置组件的高度。",required:!1},label:{default:"'$vuetify.input.otp'",value:"",type:"string",version:"",description:"Sets the text of the v-label or v-field-label component.",description_zh:"设置 v-label 或 v-field-label 组件的文本。",required:!1},length:{default:"6",value:"",type:"string | number",version:"",description:"The OTP field’s length.",description_zh:"OTP 字段的长度。",required:!1},loading:{default:"false",value:"",type:"string | boolean",version:"",description:"Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - primary, secondary, success, info, warning, error) or a Boolean which uses the component color (set by color prop - if it’s supported by the component) or the primary color.",description_zh:"显示线性进度条。可以是指定应用于进度条的颜色的 String（任何材料颜色或主题颜色 - primary、secondary、success、info、warning、error），也可以是使用组件颜色（由 color 属性设置 - 如果组件支持）或主要颜色的 Boolean。",required:!1},"max-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum height for the component.",description_zh:"设置组件的最大高度。",required:!1},"max-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。",required:!1},"min-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum height for the component.",description_zh:"设置组件的最小高度。",required:!1},"min-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum width for the component.",description_zh:"设置组件的最小宽度。",required:!1},"v-model":{default:"undefined",value:"",type:"string | number",version:"",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v-model 值。如果 component 支持 multiple prop，则默认为空数组。",required:!1},placeholder:{default:"undefined",value:"",type:"string",version:"",description:"Sets the input’s placeholder text.",description_zh:"设置输入的占位符文本。",required:!1},rounded:{default:"undefined",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. Find more information on available border radius classes on the Border Radius page.",description_zh:"指定应用于组件的 border-radius。这可以是 0、xs、sm、true、lg、xl、pill、circle 和 shaped。在 Border Radius 页面上查找有关可用边界半径类的更多信息。",required:!1},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},type:{default:"'number'",value:"",type:"number / text / password",version:"",description:"Supported types: text, password, number.",description_zh:"支持的类型：文本、密码、数字。",required:!1},variant:{default:"'outlined'",value:"",type:" / underlined / outlined / filled / solo / solo-inverted / solo-filled / plain",version:"",description:"Applies a distinct style to the component.",description_zh:"将不同的样式应用于组件。",required:!1},width:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the width for the component.",description_zh:"设置组件的宽度。",required:!1}},link:"https://vuetifyjs.com/en/api/v-otp-input/",link_zh:"https://vuetifyjs.com/en/api/v-otp-input/",typeDetail:{},events:[{name:"finish",description:"Emitted when the input is filled completely and cursor is blurred.",description_zh:"当输入完全填充且光标模糊时发出。",params:"[string]",value:""},{name:"update:focused",description:"Emitted when the input is focused or blurred",description_zh:"当输入聚焦或模糊时发出",params:"[boolean]",value:""},{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件的模型更改时发出的事件。",params:"[string]",value:""}],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:""},{name:"loader",description:"Slot for custom loader (displayed when loading prop is equal to true).",description_zh:"自定义加载器的插槽（当加载 prop 等于 true 时显示）。",params:""}],exposed:[{name:"blur",description:"Forces the input to lose focus.",description_zh:"Forces the input to lose focus.",detail:"() => void"},{name:"focus",description:"Focuses the first field in the input",description_zh:"Focuses the first field in the input",detail:"() => void"},{name:"isFocused",description:"Returns true if the input is focused.",description_zh:"Returns true if the input is focused.",detail:"boolean"},{name:"reset",description:"Reset’s the input model to an empty array",description_zh:"Reset’s the input model to an empty array",detail:"() => void"}]},Bt={name:"VOverlay",props:{absolute:{default:"false",value:"",type:"boolean",version:"",description:"Applies position: absolute to the content element.",description_zh:"将 position： absolute 应用于 content 元素。",required:!1},activator:{default:"undefined",value:"",type:"Element | 'parent' | (string & {}) | ComponentPublicInstance",version:"",description:"Explicitly sets the overlay’s activator.",description_zh:"显式设置叠加层的激活器。",required:!1},"activator-props":{default:"{}",value:"",type:"unknown",version:"",description:"Apply custom properties to the activator.",description_zh:"将自定义属性应用于激活器。",required:!1},attach:{default:"false",value:"",type:"string | boolean | Element",version:"",description:"Specifies which DOM element the overlay content should teleport to. Can be a direct element reference, querySelector string, or true to disable teleporting. Uses body by default.",description_zh:"指定覆盖内容应传送到哪个 DOM 元素。可以是直接元素引用、querySelector 字符串或 true，以禁用传送。默认使用 body。",required:!1},"close-delay":{default:"undefined",value:"",type:"string | number",version:"",description:"Milliseconds to wait before closing component. Only applies to hover and focus events.",description_zh:"关闭组件之前等待的毫秒数。仅适用于悬停和焦点事件。",required:!1},"close-on-back":{default:"true",value:"",type:"boolean",version:"",description:"Closes the overlay content when the browser’s back button is pressed or $router.back() is called, cancelling the original navigation. persistent overlays will cancel navigation and animate as if they were clicked outside instead of closing.",description_zh:"在按下浏览器的后退按钮或调用 $router.back（） 时关闭覆盖内容，从而取消原始导航。永久叠加将取消导航并制作动画，就像在外部单击而不是关闭一样。",required:!1},"close-on-content-click":{default:"false",value:"",type:"boolean",version:"",description:"Closes component when you click on its content.",description_zh:"单击组件内容时关闭组件。",required:!1},contained:{default:"false",value:"",type:"boolean",version:"",description:"Limits the size of the component and scrim to its offset parent. Implies absolute and attach. (Note: The parent element must have position: relative.).",description_zh:"将零部件和纱布的大小限制为其偏移父级。暗示 absolute 和 attach。（注意：父元素必须具有 position： relative。",required:!1},"content-class":{default:"undefined",value:"",type:"any",version:"",description:"Applies a custom class to the detached element. This is useful because the content is moved to the beginning of the v-app component (unless the attach prop is provided) and is not targetable by classes passed directly on the component.",description_zh:"将自定义类应用于分离的元素。这很有用，因为内容被移动到 v-app 组件的开头（除非提供了 attach 属性），并且不能被直接在组件上传递的类所定位。",required:!1},"content-props":{default:"undefined",value:"",type:"any",version:"",description:"Apply custom properties to the content.",description_zh:"将自定义属性应用于内容。",required:!1},disabled:{default:"false",value:"",type:"boolean",version:"",description:"Removes the ability to click or target the component.",description_zh:"删除单击组件或定位组件的功能。",required:!1},eager:{default:"false",value:"",type:"boolean",version:"",description:"Forces the component’s content to render when it mounts. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO.",description_zh:"强制组件的内容在挂载时呈现。如果您的内容不会在 DOM 中呈现，并且您希望为 SEO 抓取，这将非常有用。",required:!1},height:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the height for the component.",description_zh:"设置组件的高度。",required:!1},location:{default:"'bottom'",value:"",type:"Anchor",version:"",description:"Specifies the anchor point for positioning the component, using directional cues to align it either horizontally, vertically, or both…",description_zh:"指定用于定位组件的锚点，使用方向提示将其水平对齐、垂直对齐或两者对齐......",required:!1},"location-strategy":{default:"'static'",value:"",type:"static / connected / LocationStrategyFn",version:"",description:"A function used to specifies how the component should position relative to its activator.",description_zh:"用于指定组件相对于其激活器的位置的函数。",required:!1},"max-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum height for the component.",description_zh:"设置组件的最大高度。",required:!1},"max-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。",required:!1},"min-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum height for the component.",description_zh:"设置组件的最小高度。",required:!1},"min-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum width for the component.",description_zh:"设置组件的最小宽度。",required:!1},"v-model":{default:"false",value:"",type:"boolean",version:"",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v-model 值。如果 component 支持 multiple prop，则默认为空数组。",required:!0},"no-click-animation":{default:"false",value:"",type:"boolean",version:"",description:"Disables the bounce effect when clicking outside of the content element when using the persistent prop.",description_zh:"在使用 persistent prop 时，在内容元素外部单击时禁用弹跳效果。",required:!1},offset:{default:"undefined",value:"",type:"string | number | number[]",version:"",description:"A single value that offsets content away from the target based upon what side it is on.",description_zh:"一个值，该值根据内容所在的一侧将内容从目标偏移。",required:!1},opacity:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the overlay opacity.",description_zh:"设置叠加不透明度。",required:!1},"open-delay":{default:"undefined",value:"",type:"string | number",version:"",description:"Milliseconds to wait before opening component. Only applies to hover and focus events.",description_zh:"打开组件之前等待的毫秒数。仅适用于悬停和焦点事件。",required:!1},"open-on-click":{default:"undefined",value:"",type:"boolean",version:"",description:"Activate the component when the activator is clicked.",description_zh:"单击激活器时激活组件。",required:!1},"open-on-focus":{default:"undefined",value:"",type:"boolean",version:"",description:"Activate the component when the activator is focused.",description_zh:"当激活器聚焦时激活组件。",required:!1},"open-on-hover":{default:"false",value:"",type:"boolean",version:"",description:"Activate the component when the activator is hovered.",description_zh:"将鼠标悬停在激活器上时激活组件。",required:!1},origin:{default:"'auto'",value:"",type:"Anchor / auto / overlap",version:"",description:"Sets the transition origin on the element. You can find more information on the MDN documentation for transition origin.",description_zh:"设置元素上的过渡原点。您可以在 transition origin 的 MDN 文档上找到更多信息。",required:!1},persistent:{default:"false",value:"",type:"boolean",version:"",description:"Clicking outside of the element or pressing esc key will not deactivate it.",description_zh:"单击元素外部或按 Esc 键不会将其停用。",required:!1},scrim:{default:"true",value:"",type:"string | boolean",version:"",description:"Accepts true/false to enable background, and string to define color.",description_zh:"接受 true/false 以启用背景，接受 string 以定义颜色。",required:!1},"scroll-strategy":{default:"'block'",value:"",type:"none / close / block / reposition / ScrollStrategyFn",version:"",description:"Strategy used when the component is activate and user scrolls.",description_zh:"当组件处于 activate 状态且用户滚动时使用的策略。",required:!1},target:{default:"undefined",value:"",type:"  | Element  | 'parent'  | 'cursor'  | (string & {})  | ComponentPublicInstance  | [number, number]",version:"",description:"For locationStrategy=“connected”, specify an element or array of x,y coordinates that the overlay should position itself relative to. This will be the activator element by default.",description_zh:"对于 locationStrategy=“connected”，指定叠加层应相对于其定位自身的 x，y 坐标的元素或数组。默认情况下，这将是 activator 元素。",required:!1},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},transition:{default:"'fade-transition'",value:"",type:"string | boolean | (TransitionProps & { component: Component })",version:"",description:"Sets the component transition. Can be one of the built in or custom transition.",description_zh:"设置零部件过渡。可以是内置或自定义过渡之一。",required:!1},width:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the width for the component.",description_zh:"设置组件的宽度。",required:!1},"z-index":{default:"2000",value:"",type:"string | number",version:"",description:"The z-index used for the component.",description_zh:"用于组件的 z-index。",required:!1}},link:"https://vuetifyjs.com/en/api/v-overlay/",link_zh:"https://vuetifyjs.com/en/api/v-overlay/",typeDetail:{},events:[{name:"afterEnter",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"[]",value:""},{name:"afterLeave",description:"Event that fires after the overlay has finished transitioning out.",description_zh:"在叠加完成过渡后触发的事件。",params:"[]",value:""},{name:"click:outside",description:"Event that fires when clicking outside an active overlay.",description_zh:"在活动叠加层外部单击时触发的事件。",params:"[MouseEvent]",value:""},{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件的模型更改时发出的事件。",params:"[boolean]",value:""}],methods:[],slots:[{name:"activator",description:"When used, will activate the component when clicked (or hover for specific components). This manually stops the event propagation. Without this slot, if you open the component through its model, you will need to manually stop the event propagation.",description_zh:"使用时，将在单击时激活组件（或将鼠标悬停在特定组件上）。这将手动停止事件传播。如果没有此插槽，如果通过其模型打开组件，则需要手动停止事件传播。",params:"{\n  isActive: boolean\n  props: Record<string, any>\n  targetRef: TemplateRef\n}"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{ isActive: Ref<boolean> }"}],exposed:[{name:"activatorEl",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"HTMLElement"},{name:"animateClick",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"() => void"},{name:"contentEl",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"HTMLElement"},{name:"globalTop",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"localTop",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"scrimEl",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"HTMLElement"},{name:"target",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"HTMLElement | [number, number]"},{name:"updateLocation",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(e: Event) => void"}]},Lt={name:"VPagination",props:{"active-color":{default:"undefined",value:"",type:"string",description:"The applied color when the component is in an active state.",description_zh:"组件处于活动状态时应用的颜色。"},"aria-label":{default:"$vuetify.pagination.ariaLabel.root",value:"",type:"string",description:"Label for the root element.",description_zh:"根元素的标签。"},border:{default:"false",value:"",type:"string | number | boolean",description:"Apply a border style to the component.",description_zh:"应用边框样式到组件。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the selected page button - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定颜色应用于所选页面按钮 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},"current-page-aria-label":{default:"$vuetify.pagination.ariaLabel.currentPage",value:"",type:"string",description:"Label for the currently selected page.",description_zh:"当前所选页面的标签。"},density:{default:"default",value:"",type:"default / comfortable / compact",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。"},disabled:{default:"false",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},elevation:{default:"undefined",value:"",type:"string | number",description:"The elevation of the component is acceptable from 0 to 24. You can read more on the Elevation page.",description_zh:"组件的海拔可接受 0 到 24 之间的值。你可以在 elevation page 浏览更多信息。"},ellipsis:{default:"...",value:"",type:"string",description:"Text to show between page buttons when truncating the list.",description_zh:"截断列表时在页面按钮之间显示的文本。"},"first-aria-label":{default:"$vuetify.pagination.ariaLabel.first",value:"",type:"string",description:"Label for the go to first button.",description_zh:"转到第一个按钮的标签。"},"first-icon":{default:"$first",value:"",type:"any",description:"The icon to use for the first button.",description_zh:"用于第一个按钮的图标。"},"last-aria-label":{default:"$vuetify.pagination.ariaLabel.last",value:"",type:"string",description:"Label for the go to last button.",description_zh:"“转到最后一个”按钮的标签。"},"last-icon":{default:"$last",value:"",type:"any",description:"The icon to use for the last button.",description_zh:"用于最后一个按钮的图标。"},length:{default:"1",value:"",type:"string | number",description:"The number of pages.",description_zh:"页数。",required:!0},":v-model":{default:"undefined",value:"",type:"number",description:"The value of the component v-mode. If the component supports variants, the default is an empty array.",description_zh:"组件 v-mode 的值。如果组件支持多属性，默认为空数组。"},"next-aria-label":{default:"$vuetify.pagination.ariaLabel.next",value:"",type:"string",description:"Label for the next button.",description_zh:"下一个按钮的标签。"},"next-icon":{default:"$next",value:"",type:"any",description:"The icon to use for the next button.",description_zh:"用于下一个按钮的图标。"},"page-aria-label":{default:"$vuetify.pagination.ariaLabel.page",value:"",type:"string",description:"Label for each page button.",description_zh:"每个页面按钮的标签。"},"prev-icon":{default:"$prev",value:"",type:"any",description:"The icon to use for the prev button.",description_zh:"用于上一个按钮的图标。"},"previous-aria-label":{default:"$vuetify.pagination.ariaLabel.previous",value:"",type:"string",description:"Label for the previous button.",description_zh:"上一个按钮的标签。"},rounded:{default:"undefined",value:"",type:"string | number | boolean",description:"Applies the border-radius style to the specified component. You can get more information about this on the Corner Radius of Borders page",description_zh:"对指定的组件应用 border-radius 样式。您可以在 边框的圆角半径页面 获取更多有关信息"},"show-first-last-page":{default:"false",value:"",type:"boolean",description:"Show buttons for going to first and last page.",description_zh:"显示用于转到第一页和最后一页的按钮。"},size:{default:"default",value:"",type:"string | number",description:"Set the height and width of the component. The default unit is px. You can also use the following predefined sizes: x-small, small, default, large, and x-large.",description_zh:"设置组件的高度和宽度。默认单位是px。也可以使用以下预定义的大小：x-small、small、default、large和x-large。"},start:{default:"1",value:"",type:"string | number",description:"Specify the starting page.",description_zh:"指定起始页。"},tag:{default:"nav",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},"total-visible":{default:"undefined",value:"",type:"string | number",description:"Specify the total visible pagination numbers.",description_zh:"指定可见分页总数。"},variant:{default:"text",value:"",type:"flat / elevated / tonal / outlined / text / plain",description:"Applies a distinct style to the component.",description_zh:"对组件应用不同的样式。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-pagination/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-pagination/#links",typeDetail:{},events:[{name:"first",description:"Emitted when clicking on go to first button.",description_zh:"单击转到第一个按钮时发出。",params:"[number]",value:""},{name:"last",description:"Emitted when clicking on go to last button.",description_zh:"单击“转到最后一个”按钮时发出。",params:"[number]",value:""},{name:"next",description:"Emitted when clicking on go to next button.",description_zh:"单击“转到下一步”按钮时发出。",params:"[number]",value:""},{name:"prev",description:"Emitted when clicking on go to previous button.",description_zh:"单击“转到上一个”按钮时发出。",params:"[number]",value:""},{name:"update:modelValue",description:"An event that is raised when a component's model-value changes.",description_zh:"当组件的 model-value 更改时引发的事件。",params:"[number]",value:""}],methods:[],slots:[{name:"first",description:"Define a custom appearance for the first button.",description_zh:"定义第一个按钮的自定义外观。",params:"{\n  icon:\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n  onClick: (e: Event) => void\n  disabled: boolean\n  'aria-label': string\n  'aria-disabled': boolean\n}"},{name:"item",description:"Define a custom item appearance.",description_zh:"定义自定义项外观。",params:"{\n  isActive: boolean\n  key: string | number\n  page: string\n  props: Record<string, any>\n}"},{name:"last",description:"Define a custom appearance for the last button.",description_zh:"定义最后一个按钮的自定义外观。",params:"{\n  icon:\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n  onClick: (e: Event) => void\n  disabled: boolean\n  'aria-label': string\n  'aria-disabled': boolean\n}"},{name:"next",description:"Define a custom appearance for the next button.",description_zh:"定义 next 按钮的自定义外观。",params:"{\n  icon:\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n  onClick: (e: Event) => void\n  disabled: boolean\n  'aria-label': string\n  'aria-disabled': boolean\n}"},{name:"prev",description:"Define a custom appearance for the previous button.",description_zh:"定义上一个按钮的自定义外观。",params:"{\n  icon:\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n  onClick: (e: Event) => void\n  disabled: boolean\n  'aria-label': string\n  'aria-disabled': boolean\n}"}]},Yt={name:"VParallax",props:{scale:{default:"0.5",value:"",type:"string | number",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"}},link:"https://vuetifyjs.com/zh-Hans/api/v-parallax/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-parallax/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"},{name:"error",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"},{name:"placeholder",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"},{name:"sources",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"}]},J={name:"VPicker",props:{"bg-color":{default:"undefined",value:"",type:"string",description:"Applies specified color to the control’s background. Used on components that also support the color prop. - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件的背景。用于还支持颜色道具的组件。- 支持实用程序颜色（例如 success 或紫色）或 CSS 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},border:{default:"false",value:"",type:"string | number | boolean",description:"Designates the border-radius applied to the component. This can be xs, sm, md, lg, xl.",description_zh:"指定应用于组件的边框半径。这可以是 xs、sm、md、lg、xl。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},elevation:{default:"undefined",value:"",type:"string | number",description:"Designates an elevation applied to the component between 0 and 24. You can find more information on the elevation page.",description_zh:"指定应用于组件的高程介于 0 和 24 之间。您可以在高程页面上找到更多信息。"},height:{default:"undefined",value:"",type:"string | number",description:"Sets the height for the component.",description_zh:"设置组件的高度。"},"hide-header":{default:"false",value:"",type:"boolean",description:"Hide the picker header.",description_zh:"隐藏选取器标头。"},landscape:{default:"false",value:"",type:"boolean",description:"Puts the picker into landscape mode.",description_zh:"将选取器置于横向模式。"},location:{default:"undefined",value:"",type:"Anchor",description:"Specifies the component’s location. Can combine by using a space separated string.",description_zh:"指定组件的位置。可以使用空格分隔的字符串进行组合。"},"max-height":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum height for the component.",description_zh:"设置元件的最大高度。"},"max-width":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。"},"min-height":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum height for the component.",description_zh:"设置元件的最小高度。"},"min-width":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum width for the component.",description_zh:"设置组件的最小宽度。"},position:{default:"undefined",value:"",type:"static / relative / fixed / absolute / sticky",description:"Sets the position for the component.",description_zh:"设置组件的位置。"},rounded:{default:"undefined",value:"",type:"string | number | boolean",description:"Designates the border-radius applied to the component. This can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. Find more information on available border radius classes on the Border Radius page.",description_zh:"指定应用于组件的边框半径。这可以是 0、xs、sm、true、lg、xl、pill、circle 和 shaped。有关可用边框半径类的详细信息，请访问边框半径页面。"},tag:{default:"div",value:"",type:"string",description:"Specify a custom tag used on the root element.",description_zh:"指定用于根元素的自定义标记。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},tile:{default:"false",value:"",type:"boolean",description:"Removes any applied border-radius from the component.",description_zh:"从元件中移除任何应用的边框半径。"},title:{default:"undefined",value:"",type:"string",description:"Specify a title text for the component.",description_zh:"指定组件的标题文本。"},width:{default:"undefined",value:"",type:"string | number",description:"Sets the width for the component.",description_zh:"设置元件的宽度。"}},link:"https://vuetifyjs.com/en/api/v-picker/#props",link_zh:"https://vuetifyjs.com/en/api/v-picker/#props",typeDetail:{},events:[],methods:[],slots:[{name:"actions",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。"},{name:"header",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）"},{name:"title",description:"Slot for the component’s title content.",description_zh:"组件标题内容的插槽。"}]},Q={name:"VPickerTitle",props:{tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-picker-title/#props",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-picker-title/#props",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},Ut={name:"VProgressCircular",props:{"bg-color":{default:"undefined",value:"",type:"string",description:"Applies specified color to the control’s background. Used on components that also support the color prop. - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件的背景。用于也支持 color 属性的组件。- 支持实用程序颜色（例如成功或紫色）或 CSS 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},indeterminate:{default:"false",value:"",type:"true / false / disable-shrink",description:"Constantly animates, use when loading progress is unknown. If set to the string 'disable-shrink' it will use a simpler animation that does not run on the main thread.",description_zh:"不断制作动画，在加载进度未知时使用。如果设置为字符串“disable-shrink”，它将使用不在主线程上运行的更简单的动画。"},":v-model":{default:"0",value:"",type:"string | number",description:"The percentage value for current progress.",description_zh:"当前进度的百分比值。",required:!0},rotate:{default:"0",value:"",type:"string | number",description:"Rotates the circle start point in degrees.",description_zh:"以度为单位旋转圆的起点。"},size:{default:"default",value:"",type:"string | number",description:"Sets the diameter of the circle in pixels.",description_zh:"设置圆的直径（以像素为单位）。"},tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},width:{default:"4",value:"",type:"string | number",description:"Sets the stroke of the circle in pixels.",description_zh:"以像素为单位设置圆的描边。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-progress-circular/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-progress-circular/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{ value: number }"}]},Wt={name:"VProgressLinear",props:{absolute:{default:"false",value:"",type:"boolean",description:"Apply the position: absolute style to the component.",description_zh:"应用 position: absolute 样式到组件."},active:{default:"true",value:"",type:"boolean",description:"Reduce the height to 0, hiding component.",description_zh:"将高度降低到 0，隐藏组件。"},"bg-color":{default:"undefined",value:"",type:"string",description:"Applies specified color to the control’s background. Used on components that also support the color prop. - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件的背景。用于也支持 color 属性的组件。- 支持实用程序颜色（例如成功或紫色）或 CSS 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},"bg-opacity":{default:"undefined",value:"",type:"string | number",description:"Background opacity, if null it defaults to 0.3 if background color is not specified or 1 otherwise.",description_zh:"背景不透明度，如果为 null，则默认为 0.3（如果未指定背景颜色）或 1。"},"buffer-value":{default:"0",value:"",type:"string | number",description:"The percentage value for the buffer.",description_zh:"缓冲区的百分比值。"},clickable:{default:"false",value:"",type:"boolean",description:"Clicking on the progress track will automatically set the value.",description_zh:"单击进度轨道将自动设置值。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},height:{default:"4",value:"",type:"string | number",description:"Sets the height of the component.",description_zh:"设定组件的高度。"},indeterminate:{default:"false",value:"",type:"boolean",description:"Constant animation, used when the loading progress is unknown.",description_zh:"恒定动画，加载进度未知时使用。"},location:{default:"top",value:"",type:"Anchor",description:"Specifies the component’s location. Can combine by using a space separated string.",description_zh:"指定组件的位置。可以使用空格分隔的字符串进行组合。"},max:{default:"100",value:"",type:"string | number",description:"Sets the maximum value the progress can reach.",description_zh:"设置进度可以达到的最大值。"},":v-model":{default:"0",value:"",type:"string | number",description:"The value of the component v-mode. If the component supports variants, the default is an empty array.",description_zh:"组件 v-mode 的值。如果组件支持多属性，默认为空数组。",required:!0},reverse:{default:"false",value:"",type:"boolean",description:"Use the reverse property to display the reversed progress bar (right-to-left for LTR mode and left-to-right for RTL mode).",description_zh:"使用 reverse 属性显示反转的进度条(LTR模式为从右到左，RTL模式为从左到右)。"},rounded:{default:"undefined",value:"",type:"string | number | boolean",description:"Applies the border-radius style to the specified component. You can get more information about this on the Corner Radius of Borders page",description_zh:"对指定的组件应用 border-radius 样式。您可以在 边框的圆角半径页面 获取更多有关信息"},"rounded-bar":{default:"false",value:"",type:"boolean",description:"Applies a border radius to the progress bar.",description_zh:"将边框半径应用于进度条。"},stream:{default:"false",value:"",type:"boolean",description:"An alternative style for portraying loading that works in tandem with buffer-value.",description_zh:"用于描绘加载的另一种样式，与缓冲区值协同工作。"},striped:{default:"false",value:"",type:"boolean",description:"Adds a stripe background to the filled portion of the progress component.",description_zh:"将条纹背景添加到进度组件的填充部分。"},tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-progress-linear/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-progress-linear/#links",typeDetail:{},events:[{name:"update:modelValue",description:"An event that is raised when a component's model-value changes.",description_zh:"当组件的 model-value 更改时引发的事件。",params:"[number]",value:""}],methods:[],slots:[{name:"default",description:"Provides the current value of the component.",description_zh:"提供组件的当前值。",params:"{ value: number; buffer: number }"}]},Z={name:"VPullToRefresh",props:{disabled:{default:"false",value:"",type:"boolean",version:"",description:"Removes the ability to click or target the component.",description_zh:"删除单击组件或定位组件的功能。",required:!1},":pull-down-threshold":{default:"64",value:"",type:"number",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1}},link:"https://vuetifyjs.com/en/api/v-pull-to-refresh/",link_zh:"https://vuetifyjs.com/en/api/v-pull-to-refresh/",typeDetail:{},events:[{name:"load",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"[{ done: () => void }]",value:""}],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:""},{name:"pullDownPanel",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{ canRefresh: boolean; goingUp: boolean; refreshing: boolean }"}],exposed:[]},Kt={name:"VRadio",props:{"base-color":{default:"undefined",value:"",type:"string",description:"Sets the color of the input when it is not focused.",description_zh:"设置输入未聚焦时的颜色。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},"defaults-target":{default:"undefined",value:"",type:"string",description:"The target component to provide defaults values for.",description_zh:"要为其提供默认值的目标组件。"},density:{default:"default",value:"",type:"default /comfortable /compact",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。"},disabled:{default:"null",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},error:{default:"false",value:"",type:"boolean",description:"Puts the input in a manual error state.",description_zh:"将输入置于手动错误状态。"},"false-icon":{default:"$radioOff",value:"",type:"any",description:"The icon used when it is inactive.",description_zh:"处于不活动状态时使用的图标。"},"false-value":{default:"undefined",value:"",type:"any",description:"Sets value for falsy state.",description_zh:"设置虚假状态的值。"},id:{default:"undefined",value:"",type:"string",description:"Sets the DOM id on the component.",description_zh:"设置组件上的 DOM ID。"},inline:{default:"false",value:"",type:"boolean",description:"Puts children inputs into a row.",description_zh:"将子输入放入一行中。"},":label":{default:"undefined",value:"",type:"string",description:"Sets the text of the v-label or v-field-label component.",description_zh:"设置 v-label 或 v-field-label 组件的文本。",required:!0,foreach:!0},":v-model":{default:"undefined",value:"",type:"any",description:"The value of the component v-mode. If the component supports variants, the default is an empty array.",description_zh:"组件 v-mode 的值。如果组件支持多属性，默认为空数组。"},multiple:{default:"null",value:"",type:"boolean",description:"Changes select to multiple. Accepts array for value.",description_zh:"选择更改为多个。接受 value 的数组。"},name:{default:"undefined",value:"",type:"string",description:"Set the name property of the component.",description_zh:"设置组件的 name 属性."},readonly:{default:"null",value:"",type:"boolean",description:"Puts input in readonly state.",description_zh:"将输入置于只读状态。"},ripple:{default:"true",value:"",type:"boolean",description:"Apply the v-ripple directive.",description_zh:"应用 v-ripple 指令。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},"true-icon":{default:"$radioOn",value:"",type:"any",description:"The icon used when it is active.",description_zh:"处于激活状态时使用的图标."},"true-value":{default:"undefined",value:"",type:"any",description:"Sets value for truthy state.",description_zh:"设置真实状态的值。"},type:{default:"undefined",value:"",type:"string",description:"Provides the default type for children selection controls.",description_zh:"为子项选择控件提供默认类型。"},":value":{default:"undefined",value:"",type:"any",description:"The value used when selecting a component in a group. If not provided, a unique ID is used.",description_zh:"在组中选择组件时使用的值。如果没有提供，则使用唯一 ID。",required:!0,foreach:!0},"value-comparator":{default:"undefined",value:"",type:"(a: any, b: any) => boolean",description:"Apply a custom comparison algorithm to compare model-value and values contains in the items prop.",description_zh:"应用自定义比较算法来比较模型值和 items 属性中包含的值。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-radio/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-radio/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{\n  backgroundColorClasses: Ref<string[]>\n  backgroundColorStyles: Ref<CSSProperties>\n}"},{name:"input",description:"The slot used for the default input element.",description_zh:"用于默认 input 元素的插槽。",params:"{\n  model: WritableComputedRef<boolean>\n  textColorClasses: Ref<string[]>\n  textColorStyles: Ref<CSSProperties>\n  backgroundColorClasses: Ref<string[]>\n  backgroundColorStyles: Ref<CSSProperties>\n  inputNode: VNode<RendererNode, RendererElement, { [key: string]: any }>\n  icon:\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n  props: {\n    onBlur: (e: Event) => void\n    onFocus: (e: FocusEvent) => void\n    id: string\n  }\n}"},{name:"label",description:"The default slot of the v-label or v-field-label component.",description_zh:"v-label 或 v-field-label 组件的默认插槽。",params:"{ label: string; props: Record<string, unknown> }"}]},Xt={name:"VRadioGroup",props:{"append-icon":{default:"undefined",value:"",type:"any",description:"Creates a v-icon component after default content in the append slot.",description_zh:"在追加槽中的默认内容之后创建一个 v-icon 组件。"},"center-affix":{default:"true",value:"",type:"boolean",description:"Vertically align appendInner, prependInner, clearIcon and label in the center.",description_zh:"将 appendInner、prependInner、clearIcon 和标签垂直对齐在中心。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},"defaults-target":{default:"undefined",value:"",type:"string",description:"The target component to provide defaults values for.",description_zh:"要为其提供默认值的目标组件。"},density:{default:"default",value:"",type:"default / comfortable / compact",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。"},direction:{default:"horizontal",value:"",type:"horizontal / vertical",description:"Change the input direction.",description_zh:"改变输入方向."},disabled:{default:"null",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},error:{default:"false",value:"",type:"boolean",description:"Set the input box to a manual error state.",description_zh:"将输入框设置为手动错误状态。"},"error-messages":{default:"[]",value:"",type:"string | string[]",description:"Put the input box into an error state and pass in a custom error message. will be combined with any validation from the rules property. This field does not trigger validation.",description_zh:"将输入框置于错误状态，并传入自定义的错误信息。将与来自 rules 属性的任何验证相结合。这个字段不会触发验证。"},"false-icon":{default:"$radioOff",value:"",type:"any",description:"The icon used when it is inactive.",description_zh:"处于不活动状态时使用的图标。"},focused:{default:"false",value:"",type:"boolean",description:"Force the component to use the style when focused.",description_zh:"强制组件使用聚焦时的样式。"},height:{default:"auto",value:"",type:"string | number",description:"Sets the height of the input.",description_zh:"设置输入的高度。"},"hide-details":{default:"false",value:"",type:"true / fasle / auto",description:"Hide hints and validation errors. When set to auto and only displays information (prompts, error messages, counter values, etc.) to display.",description_zh:"隐藏提示和验证错误。当设置为 auto 并且只有在有信息（提示、错误信息、计数器值等）要显示时，才会显示信息。"},"hide-spin-buttons":{default:"false",value:"",type:"boolean",description:"When the type is set to number, the rotation button is hidden on the input element.",description_zh:"当类型设置为 number 时，在 input 元素上隐藏旋转按钮。"},hint:{default:"undefined",value:"",type:"string",description:"Displays hint text below the input when focused. Force this always open with the persistent-hint property.",description_zh:"聚焦时在输入下方显示提示文本。使用 persistent-hint 属性强制它始终打开。"},id:{default:"undefined",value:"",type:"string",description:"Sets the DOM id on the component.",description_zh:"设置组件上的 DOM ID。"},inline:{default:"false",value:"",type:"boolean",description:"Displays radio buttons in row.",description_zh:"在行中显示单选按钮。"},label:{default:"undefined",value:"",type:"string",description:"Sets the text of the v-label or v-field-label component.",description_zh:"设置 v-label 或 v-field-label 组件的文本。"},"max-errors":{default:"1",value:"",type:"string | number",description:"Control the maximum number of shown errors from validation.",description_zh:"控制验证中显示的最大错误数。"},messages:{default:"[]",value:"",type:"string | string[]",description:"Display a list of messages or messages (if using strings)",description_zh:"显示消息列表或消息（如果使用字符串）"},":v-model":{default:"undefined",value:"",type:"unknown",description:"The value of the component v-mode. If the component supports variants, the default is an empty array.",description_zh:"组件 v-mode 的值。如果组件支持多属性，默认为空数组。"},name:{default:"undefined",value:"",type:"string",description:"Set the name property of the component.",description_zh:"设置组件的 name 属性."},"persistent-hint":{default:"false",value:"",type:"boolean",description:"Forces hint to always be visible.",description_zh:"力暗示始终可见。"},"prepend-icon":{default:"undefined",value:"",type:"any",description:"Prepends an icon to the component, uses the same syntax as v-icon.",description_zh:"在组件前面添加一个图标，使用与 v-icon 相同的语法。"},readonly:{default:"null",value:"",type:"boolean",description:"Puts input in readonly state.",description_zh:"将输入置于只读状态。"},ripple:{default:"true",value:"",type:"boolean",description:"Apply the v-ripple directive.",description_zh:"应用 v-ripple 指令。"},rules:{default:"[]",value:"",type:"ValidationRule[]",description:"Accepts a mixed array of types function, boolean and string. Functions pass an input value as an argument and must return either true / false or a string containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) false or is a string.",description_zh:"接受 function、boolean 和 string 类型的混合数组。函数将输入值作为参数传递，并且必须返回 true / false 或包含错误消息的字符串。如果函数返回（或数组中的任何值包含）false 或字符串，则输入字段将进入错误状态。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},"true-icon":{default:"$radioOn",value:"",type:"any",description:"The icon used when it is active.",description_zh:"处于激活状态时使用的图标."},type:{default:"radio",value:"",type:"string",description:"Provides the default type for children selection controls.",description_zh:"为子项选择控件提供默认类型。"},"validate-on":{default:"undefined",value:"",type:" / blur / input / submit / blur lazy / input lazy / submit lazy / lazy blur / lazy input / lazy submit / lazy",description:"Change what type of event triggers validation to run.",description_zh:"更改触发要运行的验证的事件类型。"},"validation-value":{default:"undefined",value:"",type:"any",description:"The value used when applying validation rules.",description_zh:"应用验证规则时使用的值。"},"value-comparator":{default:"undefined",value:"",type:"(a: any, b: any) => boolean",description:"Apply a custom comparison algorithm to compare model-value and values contains in the items prop.",description_zh:"应用自定义比较算法来比较模型值和 items 属性中包含的值。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-radio-group/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-radio-group/#links",typeDetail:{},events:[{name:"click:append",description:"Emitted when appended icon is clicked.",description_zh:"单击附加图标时发出。",params:"[MouseEvent]",value:""},{name:"click:prepend",description:"Emitted when prepended icon is clicked.",description_zh:"单击前置图标时发出。",params:"[MouseEvent]",value:""},{name:"update:focused",description:"Event that is emitted when the component’s focus state changes.",description_zh:"当组件的焦点状态更改时发出的事件。",params:"[boolean]",value:""},{name:"update:modelValue",description:"An event that is raised when a component's model-value changes.",description_zh:"当组件的 model-value 更改时引发的事件。",params:"[unknown]",value:""}],methods:[],slots:[{name:"append",description:"Adds an item inside the input and after input content.",description_zh:"在 input 内容内和 After input 内容中添加一个项目。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:""},{name:"details",description:"Slot for custom input details to modifying the display of messages.",description_zh:"用于修改消息显示的自定义输入详细信息的插槽。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"label",description:"The default slot of the v-label or v-field-label component.",description_zh:"v-label 或 v-field-label 组件的默认插槽。",params:"{ label: string; props: Record<string, any> }"},{name:"message",description:"Slot used to customize the message content.",description_zh:"用于自定义消息内容的插槽。",params:"{ message: string }"},{name:"prepend",description:"Adds an item outside the input and before input content.",description_zh:"在输入内容之外和之前添加项目。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"}],suggestions:["v-radio"]},Jt={name:"VRangeSlider",props:{"append-icon":{default:"undefined",value:"",type:"any",description:"Creates a v-icon component after default content in the append slot.",description_zh:"在追加槽中的默认内容之后创建一个 v-icon 组件。"},"center-affix":{default:"true",value:"",type:"boolean",description:"Vertically align appendInner, prependInner, clearIcon and label in the center.",description_zh:"将 appendInner、prependInner、clearIcon 和标签垂直对齐在中心。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},density:{default:"default",value:"",type:"default / comfortable / compact",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。"},direction:{default:"horizontal",value:"",type:"horizontal / vertical",description:"Change the input direction.",description_zh:"改变输入方向."},disabled:{default:"null",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},elevation:{default:"2",value:"",type:"string | number",description:"The elevation of the component is acceptable from 0 to 24. You can read more on the Elevation page.",description_zh:"组件的海拔可接受 0 到 24 之间的值。你可以在 elevation page 浏览更多信息。"},error:{default:"false",value:"",type:"boolean",description:"Set the input box to a manual error state.",description_zh:"将输入框设置为手动错误状态。"},"error-messages":{default:"[]",value:"",type:"string | string[]",description:"Put the input box into an error state and pass in a custom error message. will be combined with any validation from the rules property. This field does not trigger validation.",description_zh:"将输入框置于错误状态，并传入自定义的错误信息。将与来自 rules 属性的任何验证相结合。这个字段不会触发验证。"},focused:{default:"false",value:"",type:"boolean",description:"Force the component to use the style when focused.",description_zh:"强制组件使用聚焦时的样式。"},"hide-details":{default:"false",value:"",type:"true / false / auto",description:"Hide hints and validation errors. When set to auto and only displays information (prompts, error messages, counter values, etc.) to display.",description_zh:"隐藏提示和验证错误。当设置为 auto 并且只有在有信息（提示、错误信息、计数器值等）要显示时，才会显示信息。"},"hide-spin-buttons":{default:"false",value:"",type:"boolean",description:"When the type is set to number, the rotation button is hidden on the input element.",description_zh:"当类型设置为 number 时，在 input 元素上隐藏旋转按钮。"},hint:{default:"undefined",value:"",type:"string",description:"Displays hint text below the input when focused. Force this always open with the persistent-hint property.",description_zh:"聚焦时在输入下方显示提示文本。使用 persistent-hint 属性强制它始终打开。"},id:{default:"undefined",value:"",type:"string",description:"Sets the DOM id on the component.",description_zh:"设置组件上的 DOM ID。"},label:{default:"undefined",value:"",type:"string",description:"Sets the text of the v-label or v-field-label component.",description_zh:"设置 v-label 或 v-field-label 组件的文本。"},max:{default:"100",value:"",type:"string | number",description:"Sets the maximum allowed value.",description_zh:"设置允许的最大值。"},"max-errors":{default:"1",value:"",type:"string | number",description:"Control the maximum number of shown errors from validation.",description_zh:"控制验证中显示的最大错误数。"},messages:{default:"[]",value:"",type:"string | string[]",description:"Display a list of messages or messages (if using strings)",description_zh:"显示消息列表或消息（如果使用字符串）"},min:{default:"0",value:"",type:"string | number",description:"Sets the minimum allowed value.",description_zh:"设置允许的最小值。"},":v-model":{default:"[0, 0]",value:"",type:"(string | number)[]",description:"The value of the component v-mode. If the component supports variants, the default is an empty array.",description_zh:"组件 v-mode 的值。如果组件支持多属性，默认为空数组。"},name:{default:"undefined",value:"",type:"string",description:"Set the name property of the component.",description_zh:"设置组件的 name 属性."},"persistent-hint":{default:"false",value:"",type:"boolean",description:"Forces hint to always be visible.",description_zh:"力暗示始终可见。"},"prepend-icon":{default:"undefined",value:"",type:"any",description:"Prepends an icon to the component, uses the same syntax as v-icon.",description_zh:"在组件前面添加一个图标，使用与 v-icon 相同的语法。"},readonly:{default:"null",value:"",type:"boolean",description:"Puts input in readonly state.",description_zh:"将输入置于只读状态。"},reverse:{default:"false",value:"",type:"boolean",description:"Reverses the slider direction.",description_zh:"反转滑块方向。"},ripple:{default:"true",value:"",type:"boolean",description:"Apply the v-ripple directive.",description_zh:"应用 v-ripple 指令。"},rounded:{default:"undefined",value:"",type:"string | number | boolean",description:"Applies the border-radius style to the specified component. You can get more information about this on the Corner Radius of Borders page",description_zh:"对指定的组件应用 border-radius 样式。您可以在 边框的圆角半径页面 获取更多有关信息"},rules:{default:"[]",value:"",type:"ValidationRule[]",description:"Accepts a mixed array of types function, boolean and string. Functions pass an input value as an argument and must return either true / false or a string containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) false or is a string.",description_zh:"接受 function、boolean 和 string 类型的混合数组。函数将输入值作为参数传递，并且必须返回 true / false 或包含错误消息的字符串。如果函数返回（或数组中的任何值包含）false 或字符串，则输入字段将进入错误状态。"},"show-ticks":{default:"false",value:"",type:"true / false / always",description:"Displays tick marks. If true, tick marks will be displayed when using the slider. If set to 'always', it will always show tick marks.",description_zh:"显示刻度线。如果 true ，使用滑块时将显示刻度线。如果设置为 'always' ，它总是显示刻度线。"},step:{default:"0",value:"",type:"string | number",description:"If greater than 0, sets step interval for ticks.",description_zh:"如果大于 0，则设置刻度的步进间隔。"},strict:{default:"false",value:"",type:"boolean",description:"Disallows dragging the ending thumb past the starting thumb and vice versa.",description_zh:"不允许将结束拇指拖过起始拇指，反之亦然。"},"thumb-color":{default:"undefined",value:"",type:"string",description:"Sets the thumb and thumb label color.",description_zh:"设置拇指和拇指标签颜色。"},"thumb-label":{default:"undefined",value:"",type:"true / false / always",description:"Thumb labels are displayed",description_zh:"显示拇指标签"},"thumb-size":{default:"20",value:"",type:"string | number",description:"Controls the size of the thumbnail label.",description_zh:"控制缩略图标签的大小。"},ticks:{default:"undefined",value:"",type:"number[] | Record<number, string>",description:"Displays tick marks. If true, tick marks will be displayed when using the slider. If set to 'always', it will always show tick marks.",description_zh:"显示刻度线。如果 true ，使用滑块时将显示刻度线。如果设置为 'always' ，它总是显示刻度线。"},"tick-size":{default:"2",value:"",type:"string | number",description:"Controls the size of ticks",description_zh:"控制 ticks 的大小"},"track-color":{default:"undefined",value:"",type:"string",description:"Sets the tick mark color",description_zh:"设置刻度线颜色"},"track-fill-color":{default:"undefined",value:"",type:"string",description:"Sets the tick fill color",description_zh:"设置刻度线填充颜色"},"track-size":{default:"4",value:"",type:"string | number",description:"Sets the track’s size (height).",description_zh:"设置轨道的大小（高度）。"},"validate-on":{default:"undefined",value:"",type:" / blur / input / submit / blur lazy / input lazy / submit lazy / lazy blur / lazy input / lazy submit / lazy",description:"Change what type of event triggers validation to run.",description_zh:"更改触发要运行的验证的事件类型。"},"validation-value":{default:"undefined",value:"",type:"any",description:"The value used when applying validation rules.",description_zh:"应用验证规则时使用的值。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-range-slider/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-range-slider/#links",typeDetail:{},events:[{name:"click:append",description:"Emitted when appended icon is clicked.",description_zh:"单击附加图标时发出。",params:"[MouseEvent]",value:""},{name:"click:prepend",description:"Emitted when prepended icon is clicked.",description_zh:"单击前置图标时发出。",params:"[MouseEvent]",value:""},{name:"end",description:"Slider value emitted at the end of slider movement.",description_zh:"滑块移动结束时发出的滑块值。",params:"[[number, number]]",value:""},{name:"start",description:"Slider value emitted at start of slider movement.",description_zh:"滑块移动开始时发出的滑块值。",params:"[[number, number]]",value:""},{name:"update:focused",description:"Event that is emitted when the component’s focus state changes.",description_zh:"当组件的焦点状态更改时发出的事件。",params:"[boolean]",value:""},{name:"update:modelValue",description:"An event that is raised when a component's model-value changes.",description_zh:"当组件的 model-value 更改时引发的事件。",params:"[[number, number]]",value:""}],methods:[],slots:[{name:"append",description:"Adds an item inside the input and after input content.",description_zh:"在 input 内容内和 After input 内容中添加一个项目。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"details",description:"Slot for custom input details to modifying the display of messages.",description_zh:"用于修改消息显示的自定义输入详细信息的插槽。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"label",description:"The default slot of the v-label or v-field-label component.",description_zh:"v-label 或 v-field-label 组件的默认插槽。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"message",description:"Slot used to customize the message content.",description_zh:"用于自定义消息内容的插槽。",params:"{ message: string }"},{name:"prepend",description:"Adds an item outside the input and before input content.",description_zh:"在输入内容之外和之前添加项目。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"thumb-label",description:"Slot for the thumb label.",description_zh:"Thumb 标签的插槽。",params:"{ modelValue: number }"},{name:"tick-label",description:"Slot for the tick label.",description_zh:"刻度标签的插槽。",params:"{\n  tick: { value: number; position: number; label: string }\n  index: number\n}"}]},Qt={name:"VRating",props:{"active-color":{default:"undefined",value:"",type:"string",description:"The applied color when the component is in an active state.",description_zh:"组件处于活动状态时应用的颜色。"},clearable:{default:"false",value:"",type:"boolean",description:"Allows for the component to be cleared by clicking on the current value.",description_zh:"允许通过单击当前值来清除组件。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},density:{default:"default",value:"",type:"default / comfortable / compact",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。"},disabled:{default:"false",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},"empty-icon":{default:"$ratingEmpty",value:"",type:"any",description:"The icon displayed when empty.",description_zh:"空时显示的图标。"},"full-icon":{default:"$ratingFull",value:"",type:"any",description:"The icon displayed when full.",description_zh:"已满时显示的图标。"},"half-increments":{default:"false",value:"",type:"boolean",description:"Allows the selection of half increments.",description_zh:"允许选择半增量。"},hover:{default:"false",value:"",type:"boolean",description:"Provides visual feedback when hovering over icons.",description_zh:"将鼠标悬停在图标上时提供视觉反馈。"},"item-aria-label":{default:"$vuetify.rating.ariaLabel.item",value:"",type:"string",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"},"item-label-position":{default:"top",value:"",type:"string",description:"Position of item labels. Accepts ‘top’ and ‘bottom’.",description_zh:"商品标签的位置。接受“top”和“bottom”。"},"item-labels":{default:"undefined",value:"",type:"string[]",description:"Array of labels to display next to each item…",description_zh:"要显示在每个项目旁边的标签数组..."},":length":{default:"5",value:"",type:"string | number",description:"The amount of items to show.",description_zh:"要显示的项目数量。",required:!0},":v-model":{default:"0",value:"",type:"string | number",description:"The value of the component v-mode. If the component supports variants, the default is an empty array.",description_zh:"组件 v-mode 的值。如果组件支持多属性，默认为空数组。",required:!0},name:{default:"undefined",value:"",type:"string",description:"Set the name property of the component.",description_zh:"设置组件的 name 属性."},readonly:{default:"false",value:"",type:"boolean",description:"Removes all hover effects and pointer events.",description_zh:"删除所有悬停效果和指针事件。"},ripple:{default:"false",value:"",type:"boolean",description:"Apply the v-ripple directive.",description_zh:"应用 v-ripple 指令。"},":size":{default:"default",value:"",type:"string | number",description:"Set the height and width of the component. The default unit is px. You can also use the following predefined sizes: x-small, small, default, large, and x-large.",description_zh:"设置组件的高度和宽度。默认单位是px。也可以使用以下预定义的大小：x-small、small、default、large和x-large。",required:!0},tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-rating/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-rating/#links",typeDetail:{},events:[{name:"update:modelValue",description:"An event that is raised when a component's model-value changes.",description_zh:"当组件的 model-value 更改时引发的事件。",params:"[string | number]",value:""}],methods:[],slots:[{name:"item",description:"The slot for each item.",description_zh:"每个项目的槽位。",params:"{\n  value: number\n  index: number\n  isFilled: boolean\n  isHovered: boolean\n  icon:\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n  color: string\n  props: Record<string, unknown>\n  rating: number\n}"},{name:"item-label",description:"The slot for each item label.",description_zh:"每个商品标签的槽位。",params:"{ value: number; index: number; label: string }"}]},Zt={name:"VResponsive",props:{"aspect-ratio":{default:"undefined",value:"",type:"string | number",description:"Sets the basic aspect ratio calculated in Width/Height. This will only set a minimum height, and if it has a lot of content, the component can still be raised.",description_zh:"设置以 宽度/高度 计算的基本长宽比。这将只设置一个 最小 高度，如果它有很多内容的话，组件仍然可以升高。"},"content-class":{default:"undefined",value:"",type:"string",description:"Apply a custom class to the internal content element.",description_zh:"将自定义类应用于内部内容元素。"},height:{default:"undefined",value:"",type:"string | number",description:"Sets the height of the component.",description_zh:"设定组件的高度。"},inline:{default:"false",value:"",type:"boolean",description:"Display as an inline element instead of a block, also disables flex-grow.",description_zh:"显示为内联元素而不是块，也会禁用 flex-grow。"},"max-height":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum height of the component.",description_zh:"设定组件的最大高度。"},"max-width":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum width of the component.",description_zh:"设定组件的最大宽度。"},"min-height":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum height of the component.",description_zh:"设定组件的最小高度。"},"min-width":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum width of the component.",description_zh:"设定组件的最小宽度。"},width:{default:"undefined",value:"",type:"string | number",description:"Sets the width of the component.",description_zh:"设定组件的宽度。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-responsive/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-responsive/#links",typeDetail:{},events:[],methods:[],slots:[{name:"additional",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"},{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},ei={name:"VRow",props:{align:{default:"null",value:"",type:"start / end / center / baseline / stretch",description:"Applies the align-items css property. Available options are: start, center, end, baseline and stretch.",description_zh:"应用 align-items css 属性。可用选项包括：开始、居中、结束、基线和拉伸。"},"align-content":{default:"null",value:"",type:" / start / end / center / stretch / space-between / space-around / space-evenly",description:"Applies the align-content css property. Available options are: start, center, end, space-between, space-around and stretch.",description_zh:"应用 align-content css 属性。可用选项包括：开始、中心、结束、间距、间距和伸展。"},"align-content-lg":{default:"null",value:"",type:" / start / end / center / stretch / space-between / space-around / space-evenly",description:"Change the align-content property on larger and larger breakpoints.",description_zh:"在更大和更大的断点上更改 align-content 属性。"},"align-content-md":{default:"null",value:"",type:" / start / end / center / stretch / space-between / space-around / space-evenly",description:"Change the align-content property on medium and large breakpoints.",description_zh:"在中等和较大的断点上更改 align-content 属性。"},"align-content-sm":{default:"null",value:"",type:" / start / end / center / stretch / space-between / space-around / space-evenly",description:"Change the align-content property at smaller and larger breakpoints.",description_zh:"在较小和较大的断点处更改 align-content 属性。"},"align-content-xl":{default:"null",value:"",type:" / start / end / center / stretch / space-between / space-around / space-evenly",description:"Change the align-content property on larger and larger breakpoints.",description_zh:"在更大和更大的断点上更改 align-content 属性。"},"align-content-xxl":{default:"null",value:"",type:" / start / end / center / stretch / space-between / space-around / space-evenly",description:"Changes the align-content property on extra extra large and greater breakpoints.",description_zh:"更改超大和更大断点的 align-content 属性。"},"align-lg":{default:"null",value:"",type:"start / end / center / baseline / stretch",description:"Change the align-items property on larger and larger breakpoints.",description_zh:"在更大和更大的断点上更改 align-items 属性。"},"align-md":{default:"null",value:"",type:"start / end / center / baseline / stretch",description:"Change the align-items property on medium and higher breakpoints.",description_zh:"在中等和更高的断点上更改 align-items 属性。"},"align-sm":{default:"null",value:"",type:"start / end / center / baseline / stretch",description:"Change the align-items property at smaller and larger breakpoints.",description_zh:"在较小和较大的断点处更改 align-items 属性。"},"align-xl":{default:"null",value:"",type:"start / end / center / baseline / stretch",description:"Change the align-items property on larger and larger breakpoints.",description_zh:"在更大和更大的断点上更改 align-items 属性。"},"align-xxl":{default:"null",value:"",type:"start / end / center / baseline / stretch",description:"Changes the align-items property on extra extra large and greater breakpoints.",description_zh:"更改超大和更大断点的 align-items 属性。"},dense:{default:"false",value:"",type:"boolean",description:"Reduce the distance between the V-Col.",description_zh:"减少 v-col 之间的距离。"},justify:{default:"null",value:"",type:" / start / end / center / stretch / space-between / space-around / space-evenly",description:"Applies the justify-content css property. Available options are: start, center, end, space-between and space-around.",description_zh:"应用 justify-content css 属性。可用选项包括：开始、居中、结束、间隔和间隔。"},"justify-lg":{default:"null",value:"",type:" / start / end / center / space-between / space-around / space-evenly",description:"Change the justify-content property on larger and larger breakpoints.",description_zh:"在更大和更大的断点上更改 justify-content 属性。"},"justify-md":{default:"null",value:"",type:" / start / end / center / space-between / space-around / space-evenly",description:"Change the justify-content property on medium and higher breakpoints.",description_zh:"在中等和更高的断点上更改 justify-content 属性。"},"justify-sm":{default:"null",value:"",type:" / start / end / center / space-between / space-around / space-evenly",description:"Change the justify-content property on both smaller and larger breakpoints.",description_zh:"在较小和较大的断点上更改 justify-content 属性。"},"justify-xl":{default:"null",value:"",type:" / start / end / center / space-between / space-around / space-evenly",description:"Change the justify-content property on larger and larger breakpoints.",description_zh:"在更大和更大的断点上更改 justify-content 属性。"},"justify-xxl":{default:"null",value:"",type:" / start / end / center / space-between / space-around / space-evenly",description:"Changes the justify-content property on extra extra large and greater breakpoints.",description_zh:"更改超大和更大断点上的 justify-content 属性。"},"no-gutters":{default:"false",value:"",type:"boolean",description:"Remove the distance between the v-cols.",description_zh:"移除 v-col 之间的距离。"},tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-row/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-row/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}],suggestions:["v-col"]},ee={name:"VScaleTransition",props:{disabled:{default:"false",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},group:{default:"false",value:"",type:"boolean",description:"Creates a transition-group component. You can find more information in the vue docs.",description_zh:"创建转换组组件。你可以在 vue 文档中找到更多信息。"},"hide-on-leave":{default:"false",value:"",type:"boolean",description:"Hides the leaving element (no exit animation).",description_zh:"隐藏离开元素（无退出动画）。"},"leave-absolute":{default:"false",value:"",type:"boolean",description:"Absolutely positions the leaving element (useful for FLIP).",description_zh:"绝对定位离开元素（对 FLIP 有用）。"},mode:{default:"undefined",value:"",type:"string",description:"Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation for transition modes.",description_zh:"设置过渡模式（不适用于过渡组）。你可以在 Vue 文档中找到更多关于过渡模式的信息。"},origin:{default:"undefined",value:"",type:"string",description:"Sets the origin of the animation on the element. You can explore more for transition origin on the MDN documentation",description_zh:"设置元素上的动画原点。您可以在 MDN 文档上浏览更多 for transition origin"}},link:"https://vuetifyjs.com/zh-Hans/api/v-scale-transition/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-scale-transition/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},te={name:"VScrollXReverseTransition",props:{disabled:{default:"false",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},group:{default:"false",value:"",type:"boolean",description:"Creates a transition-group component. You can find more information in the vue docs.",description_zh:"创建转换组组件。你可以在 vue 文档中找到更多信息。"},"hide-on-leave":{default:"false",value:"",type:"boolean",description:"Hides the leaving element (no exit animation).",description_zh:"隐藏离开元素（无退出动画）。"},"leave-absolute":{default:"false",value:"",type:"boolean",description:"Absolutely positions the leaving element (useful for FLIP).",description_zh:"绝对定位离开元素（对 FLIP 有用）。"},mode:{default:"undefined",value:"",type:"string",description:"Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation for transition modes.",description_zh:"设置过渡模式（不适用于过渡组）。你可以在 Vue 文档中找到更多关于过渡模式的信息。"},origin:{default:"undefined",value:"",type:"string",description:"Sets the origin of the animation on the element. You can explore more for transition origin on the MDN documentation",description_zh:"设置元素上的动画原点。您可以在 MDN 文档上浏览更多 for transition origin"}},link:"https://vuetifyjs.com/zh-Hans/api/v-scroll-x-reverse-transition/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-scroll-x-reverse-transition/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},ie={name:"VScrollXTransition",props:{disabled:{default:"false",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},group:{default:"false",value:"",type:"boolean",description:"Creates a transition-group component. You can find more information in the vue docs.",description_zh:"创建转换组组件。你可以在 vue 文档中找到更多信息。"},"hide-on-leave":{default:"false",value:"",type:"boolean",description:"Hides the leaving element (no exit animation).",description_zh:"隐藏离开元素（无退出动画）。"},"leave-absolute":{default:"false",value:"",type:"boolean",description:"Absolutely positions the leaving element (useful for FLIP).",description_zh:"绝对定位离开元素（对 FLIP 有用）。"},mode:{default:"undefined",value:"",type:"string",description:"Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation for transition modes.",description_zh:"设置过渡模式（不适用于过渡组）。你可以在 Vue 文档中找到更多关于过渡模式的信息。"},origin:{default:"undefined",value:"",type:"string",description:"Sets the origin of the animation on the element. You can explore more for transition origin on the MDN documentation",description_zh:"设置元素上的动画原点。您可以在 MDN 文档上浏览更多 for transition origin"}},link:"https://vuetifyjs.com/zh-Hans/api/v-scroll-x-transition/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-scroll-x-transition/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},ne={name:"VScrollYReverseTransition",props:{disabled:{default:"false",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},group:{default:"false",value:"",type:"boolean",description:"Creates a transition-group component. You can find more information in the vue docs.",description_zh:"创建转换组组件。你可以在 vue 文档中找到更多信息。"},"hide-on-leave":{default:"false",value:"",type:"boolean",description:"Hides the leaving element (no exit animation).",description_zh:"隐藏离开元素（无退出动画）。"},"leave-absolute":{default:"false",value:"",type:"boolean",description:"Absolutely positions the leaving element (useful for FLIP).",description_zh:"绝对定位离开元素（对 FLIP 有用）。"},mode:{default:"undefined",value:"",type:"string",description:"Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation for transition modes.",description_zh:"设置过渡模式（不适用于过渡组）。你可以在 Vue 文档中找到更多关于过渡模式的信息。"},origin:{default:"undefined",value:"",type:"string",description:"Sets the origin of the animation on the element. You can explore more for transition origin on the MDN documentation",description_zh:"设置元素上的动画原点。您可以在 MDN 文档上浏览更多 for transition origin"}},link:"https://vuetifyjs.com/zh-Hans/api/v-scroll-y-reverse-transition/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-scroll-y-reverse-transition/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},oe={name:"VScrollYTransition",props:{disabled:{default:"false",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},group:{default:"false",value:"",type:"boolean",description:"Creates a transition-group component. You can find more information in the vue docs.",description_zh:"创建转换组组件。你可以在 vue 文档中找到更多信息。"},"hide-on-leave":{default:"false",value:"",type:"boolean",description:"Hides the leaving element (no exit animation).",description_zh:"隐藏离开元素（无退出动画）。"},"leave-absolute":{default:"false",value:"",type:"boolean",description:"Absolutely positions the leaving element (useful for FLIP).",description_zh:"绝对定位离开元素（对 FLIP 有用）。"},mode:{default:"undefined",value:"",type:"string",description:"Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation for transition modes.",description_zh:"设置过渡模式（不适用于过渡组）。你可以在 Vue 文档中找到更多关于过渡模式的信息。"},origin:{default:"undefined",value:"",type:"string",description:"Sets the origin of the animation on the element. You can explore more for transition origin on the MDN documentation",description_zh:"设置元素上的动画原点。您可以在 MDN 文档上浏览更多 for transition origin"}},link:"https://vuetifyjs.com/zh-Hans/api/v-scroll-y-transition/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-scroll-y-transition/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},ti={name:"VSelect",props:{active:{default:"false",value:"",type:"boolean",version:"",description:"Controls the active state of the item. This is typically used to highlight the component.",description_zh:"控制项的活动状态。这通常用于突出显示组件。",required:!1},"append-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Creates a v-icon component after default content in the append slot.",description_zh:"在附加插槽中的默认内容之后创建一个 v 图标组件。",required:!1},autofocus:{default:"false",value:"",type:"boolean",version:"",description:"Enables autofocus.",description_zh:"启用自动对焦。",required:!1},"base-color":{default:"undefined",value:"",type:"string",version:"",description:"Sets the color of the input when it is not focused.",description_zh:"设置输入未聚焦时的颜色。",required:!1},"bg-color":{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control’s background. Used on components that also support the color prop. - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件的背景。用于也支持 color 属性的组件。- 支持实用工具颜色（例如 Success 或 Purple）或 CSS 颜色（#033 或 RGBA（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},"center-affix":{default:"undefined",value:"",type:"boolean",version:"",description:"Vertically align appendInner, prependInner, clearIcon and label in the center.",description_zh:"将 appendInner、prependInner、clearIcon 和 label 垂直对齐在中心。",required:!1},chips:{default:"false",value:"",type:"boolean",version:"",description:"Changes display of selections to chips.",description_zh:"将选择项的显示更改为筹码。",required:!1},clearable:{default:"false",value:"",type:"boolean",version:"",description:"Allows for the component to be cleared.",description_zh:"允许清除组件。",required:!1},"clear-icon":{default:"'$clear'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"The icon used when the clearable prop is set to true.",description_zh:"当 clearable prop 设置为 true 时使用的图标。",required:!1},"closable-chips":{default:"false",value:"",type:"boolean",version:"",description:"Enables the closable prop on all v-chip components.",description_zh:"在所有 v-chip 组件上启用 closable prop。",required:!1},"close-text":{default:"'$vuetify.close'",value:"",type:"string",version:"",description:"Text set to to the inputs aria-label and title when input menu is closed.",description_zh:"关闭输入菜单时，文本设置为输入 aria-label 和 title。",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},counter:{default:"false",value:"",type:"string | number | boolean",version:"",description:"Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation.",description_zh:"为 input length 创建 counter;如果未指定数字，则默认为 25。不应用任何验证。",required:!1},"counter-value":{default:"undefined",value:"",type:"number | ((value: any) => number)",version:"",description:"Function returns the counter display text.",description_zh:"function 返回计数器显示文本。",required:!1},density:{default:"'default'",value:"",type:"default / comfortable / compact",version:"",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。",required:!1},direction:{default:"'horizontal'",value:"",type:"horizontal / vertical",version:"",description:"Changes the direction of the input.",description_zh:"更改输入的方向。",required:!1},disabled:{default:"null",value:"",type:"boolean",version:"",description:"Removes the ability to click or target the input.",description_zh:"删除单击或定位输入的功能。",required:!1},eager:{default:"false",value:"",type:"boolean",version:"",description:"Forces the component’s content to render when it mounts. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO.",description_zh:"强制组件的内容在挂载时呈现。如果您的内容不会在 DOM 中呈现，并且您希望为 SEO 抓取，这将非常有用。",required:!1},error:{default:"false",value:"",type:"boolean",version:"",description:"Puts the input in a manual error state.",description_zh:"将输入置于手动错误状态。",required:!1},"error-messages":{default:"[]",value:"",type:"string | string[]",version:"",description:"Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the rules prop. This field will not trigger validation.",description_zh:"将输入置于错误状态并传递自定义错误消息。将与 rules prop 发生的任何验证相结合。此字段不会触发验证。",required:!1},flat:{default:"false",value:"",type:"boolean",version:"",description:"Removes box shadow when using a variant with elevation.",description_zh:"使用具有高程的变量时删除框阴影。",required:!1},focused:{default:"false",value:"",type:"boolean",version:"",description:"Forces a focused state styling on the component.",description_zh:"强制对组件进行 focused state 样式设置。",required:!1},"hide-details":{default:"false",value:"",type:"boolean / auto",version:"",description:"Hides hint and validation errors. When set to auto messages will be rendered only if there’s a message (hint, error message, counter value etc) to display.",description_zh:"隐藏提示和验证错误。当设置为 auto 时，仅当有消息 （提示、错误消息、计数器值等） 要显示时，才会呈现消息。",required:!1},"hide-no-data":{default:"false",value:"",type:"boolean",version:"",description:"Hides the menu when there are no options to show. Useful for preventing the menu from opening before results are fetched asynchronously. Also has the effect of opening the menu when the items array changes if not already open.",description_zh:"当没有要显示的选项时隐藏菜单。用于防止在异步获取结果之前打开菜单。如果尚未打开，则还具有在 items 数组更改时打开菜单的效果。",required:!1},"hide-selected":{default:"false",value:"",type:"boolean",version:"",description:"Do not display in the select menu items that are already selected.",description_zh:"不显示在已选择的 select 菜单项中。",required:!1},"hide-spin-buttons":{default:"false",value:"",type:"boolean",version:"",description:"Hides spin buttons on the input when type is set to number.",description_zh:"当 type 设置为 number 时，隐藏输入上的旋转按钮。",required:!1},hint:{default:"undefined",value:"",type:"string",version:"",description:"Displays hint text below the input when focused. Force this always open with the persistent-hint property.",description_zh:"聚焦时，在输入下方显示提示文本。使用 persistent-hint 属性强制 this always 打开。",required:!1},id:{default:"undefined",value:"",type:"string",version:"",description:"Sets the DOM id on the component.",description_zh:"设置组件上的 DOM ID。",required:!1},"item-children":{default:"false",value:"",type:"SelectItemKey",version:"",description:"This property currently has no effect.",description_zh:"此属性当前不起作用。",required:!1},"item-color":{default:"undefined",value:"",type:"string",version:"",description:"Sets color of selected items.",description_zh:"设置选定项目的颜色。",required:!1},"item-props":{default:"'props'",value:"",type:"SelectItemKey<any>",version:"",description:"Props object that will be applied to each item component. true will treat the original object as raw props and pass it directly to the component.",description_zh:"Props 对象。true 会将原始对象视为 raw props 并将其直接传递给组件。",required:!1},":items":{default:"[]",value:"",type:"any[]",version:"",description:"Can be an array of objects or strings. By default objects should have title and value properties, and can optionally have a props property containing any VListItem props. Keys to use for these can be changed with the item-title, item-value, and item-props props.",description_zh:"可以是对象或字符串的数组。默认情况下，对象应该具有 title 和 value 属性，并且可以选择具有包含任何 VListItem props 的 props 属性。用于这些的键可以通过 item-title、item-value 和 item-props 属性来更改。",required:!0},"item-title":{default:"'title'",value:"",type:"SelectItemKey<any>",version:"",description:"Property on supplied items that contains its title.",description_zh:"包含其标题的所提供项上的属性。",required:!1},"item-value":{default:"'value'",value:"",type:"SelectItemKey<any>",version:"",description:"Set property of items’s value - must be primitive. Dot notation is supported. Note: This is currently not supported with v-combobox GitHub Issue.",description_zh:"设置项值的属性 - 必须是原始的。支持点表示法。注意： v-combobox GitHub Issue 目前不支持此功能。",required:!1},label:{default:"undefined",value:"",type:"string",version:"",description:"Sets the text of the v-label or v-field-label component.",description_zh:"设置 v-label 或 v-field-label 组件的文本。",required:!0},"list-props":{default:"undefined",value:"",type:"unknown",version:"",description:"Pass props through to the v-list component. Accepts an object with anything from v-list props, camelCase keys are recommended.",description_zh:"将 props 传递给 v-list 组件。接受带有 v-list props 中的任何内容的对象，建议使用 camelCase 键。",required:!1},loading:{default:"false",value:"",type:"string | boolean",version:"",description:"Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - primary, secondary, success, info, warning, error) or a Boolean which uses the component color (set by color prop - if it’s supported by the component) or the primary color.",description_zh:"显示线性进度条。可以是指定应用于进度条的颜色的 String（任何材料颜色或主题颜色 - primary、secondary、success、info、warning、error），也可以是使用组件颜色（由 color 属性设置 - 如果组件支持）或主要颜色的 Boolean。",required:!1},"max-errors":{default:"1",value:"",type:"string | number",version:"",description:"Control the maximum number of shown errors from validation.",description_zh:"控制验证时显示的错误的最大数量。",required:!1},"max-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。",required:!1},menu:{default:"false",value:"",type:"boolean",version:"",description:"Renders with the menu open by default.",description_zh:"默认情况下，在菜单打开的情况下进行渲染。",required:!1},"menu-icon":{default:"'$dropdown'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Sets the the spin icon.",description_zh:"设置旋转图标。",required:!1},"menu-props":{default:"undefined",value:"",type:"unknown",version:"",description:"Pass props through to the v-menu component. Accepts an object with anything from v-menu props, camelCase keys are recommended.",description_zh:"将 props 传递给 v-menu 组件。接受带有 v-menu props 中的任何内容的对象，建议使用 camelCase 键。",required:!1},messages:{default:"[]",value:"",type:"string | string[]",version:"",description:"Displays a list of messages or a single message if using a string.",description_zh:"显示消息列表，如果使用字符串，则显示单个消息。",required:!1},"min-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum width of the select’s v-menu content.",description_zh:"设置所选内容的 v-menu 内容的最小宽度。",required:!1},"v-model":{default:"null",value:"",type:"any",version:"",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v-model 值。如果 component 支持 multiple prop，则默认为空数组。",required:!1},multiple:{default:"false",value:"",type:"boolean",version:"",description:"Changes select to multiple. Accepts array for value.",description_zh:"将 select 更改为 multiple。接受数组作为值。",required:!1},name:{default:"undefined",value:"",type:"string",version:"",description:"Sets the component’s name attribute.",description_zh:"设置组件的 name 属性。",required:!1},"no-data-text":{default:"'$vuetify.noDataText'",value:"",type:"string",version:"",description:"Text shown when no items are provided to the component.",description_zh:"未向组件提供任何项时显示的文本。",required:!1},"open-on-clear":{default:"false",value:"",type:"boolean",version:"",description:"When using the clearable prop, once cleared, the select menu will either open or stay open, depending on the current state.",description_zh:"使用 clearable 属性时，一旦清除，选择菜单将打开或保持打开状态，具体取决于当前状态。",required:!1},"open-text":{default:"'$vuetify.open'",value:"",type:"string",version:"",description:"Text set to to the inputs aria-label and title when input menu is open.",description_zh:"当输入菜单打开时，文本设置为输入 aria-label 和 title。",required:!1},"persistent-clear":{default:"false",value:"",type:"boolean",version:"",description:"Always show the clearable icon when the input is dirty (By default it only shows on hover).",description_zh:"当输入脏时，始终显示可清除图标（默认情况下，它仅在悬停时显示）。",required:!1},"persistent-counter":{default:"false",value:"",type:"boolean",version:"",description:"Forces counter to always be visible.",description_zh:"强制计数器始终可见。",required:!1},"persistent-hint":{default:"false",value:"",type:"boolean",version:"",description:"Forces hint to always be visible.",description_zh:"强制提示始终可见。",required:!1},"persistent-placeholder":{default:"false",value:"",type:"boolean",version:"",description:"Forces placeholder to always be visible.",description_zh:"强制占位符始终可见。",required:!1},placeholder:{default:"undefined",value:"",type:"string",version:"",description:"Sets the input’s placeholder text.",description_zh:"设置输入的占位符文本。",required:!1},prefix:{default:"undefined",value:"",type:"string",version:"",description:"Displays prefix text.",description_zh:"显示前缀文本。",required:!1},"prepend-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Prepends an icon to the outnside the component’s input, uses the same syntax as v-icon.",description_zh:"在组件输入的外部预置一个图标，使用与 v-icon 相同的语法。",required:!1},"prepend-inner-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Creates a v-icon component in the prepend-inner slot.",description_zh:"在 prepend-inner 插槽中创建一个 v-icon 组件。",required:!1},readonly:{default:"null",value:"",type:"boolean",version:"",description:"Puts input in readonly state.",description_zh:"将输入置于只读状态。",required:!1},"return-object":{default:"false",value:"",type:"boolean",version:"",description:"Changes the selection behavior to return the object directly rather than the value specified with item-value.",description_zh:"更改选择行为以直接返回对象，而不是使用 item-value 指定的值。",required:!1},reverse:{default:"false",value:"",type:"boolean",version:"",description:"Reverses the orientation.",description_zh:"反转方向。",required:!1},role:{default:"'combobox'",value:"",type:"string",version:"",description:"The role attribute applied to the input.",description_zh:"应用于输入的 role 属性。",required:!1},rounded:{default:"undefined",value:"",type:"string | number | boolean",version:"",description:"Adds a border radius to the input.",description_zh:"向输入添加边框半径。",required:!1},rules:{default:"[]",value:"",type:"ValidationRule[]",version:"",description:"Accepts a mixed array of types function, boolean and string. Functions pass an input value as an argument and must return either true / false or a string containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) false or is a string.",description_zh:"接受 function、boolean 和 string 类型的混合数组。函数将输入值作为参数传递，并且必须返回 true / false 或包含错误消息的字符串。如果函数返回 （或数组中的任何值包含） false 或为字符串，则输入字段将进入错误状态。",required:!1},"single-line":{default:"false",value:"",type:"boolean",version:"",description:"Label does not move on focus/dirty.",description_zh:"标签在聚焦/脏污时不移动。",required:!1},suffix:{default:"undefined",value:"",type:"string",version:"",description:"Displays suffix text.",description_zh:"显示后缀文本。",required:!1},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},tile:{default:"false",value:"",type:"boolean",version:"",description:"Removes any applied border-radius from the component.",description_zh:"从组件中删除任何应用的 border-radius。",required:!1},transition:{default:"{component: {name: 'VDialogTransition'}}",value:"",type:"  | string  | boolean  | (TransitionProps & { component: Component })  | { component: Component }",version:"",description:"Sets the component transition. Can be one of the built in or custom transition.",description_zh:"设置零部件过渡。可以是内置或自定义过渡之一。",required:!1},type:{default:"'text'",value:"",type:"string",version:"",description:"Sets input type.",description_zh:"设置输入类型。",required:!1},"validate-on":{default:"undefined",value:"",type:" / eager / lazy / blur / input / submit / invalid-input / blur lazy / input lazy / submit lazy / invalid-input lazy / blur eager / input eager / submit eager / invalid-input eager / lazy blur / lazy input / lazy submit / lazy invalid-input / eager blur / eager input / eager submit / eager invalid-input",version:"",description:"Change what type of event triggers validation to run.",description_zh:"更改触发验证的事件类型以运行。",required:!1},"value-comparator":{default:"undefined",value:"",type:"(a: any, b: any) => boolean",version:"",description:"Apply a custom comparison algorithm to compare model-value and values contains in the items prop.",description_zh:"应用自定义比较算法来比较 models-value 和 items prop 中包含的值。",required:!1},variant:{default:"'filled'",value:"",type:" / outlined / plain / underlined / filled / solo / solo-inverted / solo-filled",version:"",description:"Applies a distinct style to the component.",description_zh:"将不同的样式应用于组件。",required:!1},width:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the width for the component.",description_zh:"设置组件的宽度。",required:!1}},link:"https://vuetifyjs.com/en/api/v-select/",link_zh:"https://vuetifyjs.com/en/api/v-select/",typeDetail:{},events:[{name:"click:append",description:"Emitted when append icon is clicked.",description_zh:"单击附加图标时发出。",params:"[MouseEvent]",value:""},{name:"click:appendInner",description:"Emitted when appended inner icon is clicked.",description_zh:"单击附加的内部图标时发出。",params:"[MouseEvent]",value:""},{name:"click:clear",description:"Emitted when clearable icon clicked.",description_zh:"单击可清除图标时发出。",params:"[MouseEvent]",value:""},{name:"click:prepend",description:"Emitted when prepended icon is clicked.",description_zh:"单击前置图标时发出。",params:"[MouseEvent]",value:""},{name:"click:prependInner",description:"Emitted when prepended inner icon is clicked.",description_zh:"单击前置的内部图标时发出。",params:"[MouseEvent]",value:""},{name:"update:focused",description:"Emitted when the input is focused or blurred",description_zh:"当输入聚焦或模糊时发出",params:"[boolean]",value:""},{name:"update:menu",description:"Event that is emitted when the component’s menu state changes.",description_zh:"组件的菜单状态更改时发出的事件。",params:"[boolean]",value:""},{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件的模型更改时发出的事件。",params:"[any]",value:""}],methods:[],slots:[{name:"append",description:"Adds an item inside the input and after input content.",description_zh:"在 input 内容内和 After input 内容中添加一个项目。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"append-inner",description:"Adds an item inside the input content.",description_zh:"在输入内容中添加项目。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n}"},{name:"append-item",description:"Adds an item after menu content.",description_zh:"在菜单内容后添加项目。",params:""},{name:"chip",description:"Slot for custom chip when using the chip prop.",description_zh:"使用 chip 属性时自定义 chip 的插槽。",params:"{ item: ListItem; index: number; props: Record<string, unknown> }"},{name:"clear",description:"Slot for custom clear icon (displayed when the clearable prop is equal to true).",description_zh:"自定义 clear 图标的插槽（当 clearable prop 等于 true 时显示）。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n} & { props: Record<string, any> }"},{name:"details",description:"Slot for custom input details to modifying the display of messages.",description_zh:"用于修改消息显示的自定义输入详细信息的插槽。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"item",description:'Define a custom item appearance. The root element of this slot must be a v-list-item with v-bind="props" applied. props includes everything required for the default select list behaviour - including title, value, click handlers, virtual scrolling, and anything else that has been added with item-props.',description_zh:"定义自定义项外观。这个插槽的根元素必须是一个应用了 v-bind=“props” 的 v-list-item。props 包括默认选择列表行为所需的一切 - 包括 title、value、click 处理程序、虚拟滚动以及通过 item-props 添加的任何其他内容。",params:"{ item: ListItem; index: number; props: Record<string, unknown> }"},{name:"label",description:"The default slot of the v-label or v-field-label component.",description_zh:"v-label 或 v-field-label 组件的默认插槽。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n} & { label: string; props: Record<string, any> }"},{name:"loader",description:"Slot for custom loader (displayed when loading prop is equal to true).",description_zh:"自定义加载器的插槽（当加载 prop 等于 true 时显示）。",params:"{ color: string; isActive: boolean }"},{name:"message",description:"Slot used to customize the message content.",description_zh:"用于自定义消息内容的插槽。",params:"{ message: string }"},{name:"no-data",description:"Defines content for when no items are provided.",description_zh:"定义未提供任何项目时的内容。",params:""},{name:"prepend",description:"Adds an item outside the input and before input content.",description_zh:"在输入内容之外和之前添加项目。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"prepend-inner",description:"Slot that is prepended to the input.",description_zh:"Slot 添加到输入的前缀。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n}"},{name:"prepend-item",description:"Adds an item before menu content.",description_zh:"在菜单内容之前添加项目。",params:""},{name:"selection",description:"Define a custom selection appearance.",description_zh:"定义自定义选择外观。",params:"{ item: ListItem; index: number }"}],exposed:[{name:"[string]",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"any"}]},ae={name:"VSelectionControl",props:{"base-color":{default:"undefined",value:"",type:"string",description:"Sets the color of the input when it is not focused.",description_zh:"设置输入未聚焦时的颜色。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},"defaults-target":{default:"undefined",value:"",type:"string",description:"The target component to provide defaults values for.",description_zh:"要为其提供默认值的目标组件。"},density:{default:"default",value:"",type:"default / comfortable / compact",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。"},disabled:{default:"null",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},error:{default:"false",value:"",type:"boolean",description:"Puts the input in a manual error state.",description_zh:"将输入置于手动错误状态。"},"false-icon":{default:"undefined",value:"",type:"any",description:"The icon used when it is inactive.",description_zh:"处于不活动状态时使用的图标。"},"false-value":{default:"undefined",value:"",type:"any",description:"Sets value for falsy state.",description_zh:"设置虚假状态的值。"},id:{default:"undefined",value:"",type:"string",description:"Sets the DOM id on the component.",description_zh:"设置组件上的 DOM ID。"},inline:{default:"false",value:"",type:"boolean",description:"Puts children inputs into a row.",description_zh:"将子输入放入一行中。"},label:{default:"undefined",value:"",type:"string",description:"Sets the text of the v-label or v-field-label component.",description_zh:"设置 v-label 或 v-field-label 组件的文本。"},":v-model":{default:"undefined",value:"",type:"unknown",description:"The value of the component v-mode. If the component supports variants, the default is an empty array.",description_zh:"组件 v-mode 的值。如果组件支持多属性，默认为空数组。"},multiple:{default:"null",value:"",type:"boolean",description:"Changes select to multiple. Accepts array for value.",description_zh:"选择更改为多个。接受 value 的数组。"},name:{default:"undefined",value:"",type:"string",description:"Set the name property of the component.",description_zh:"设置组件的 name 属性."},readonly:{default:"null",value:"",type:"boolean",description:"Puts input in readonly state.",description_zh:"将输入置于只读状态。"},ripple:{default:"true",value:"",type:"boolean",description:"Apply the v-ripple directive.",description_zh:"应用 v-ripple 指令。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},"true-icon":{default:"undefined",value:"",type:"any",description:"The icon used when it is active.",description_zh:"处于激活状态时使用的图标."},"true-value":{default:"undefined",value:"",type:"any",description:"Sets value for truthy state.",description_zh:"设置真实状态的值。"},type:{default:"undefined",value:"",type:"string",description:"Provides the default type for children selection controls.",description_zh:"为子项选择控件提供默认类型。"},value:{default:"undefined",value:"",type:"any",description:"The value used when selecting a component in a group. If not provided, a unique ID is used.",description_zh:"在组中选择组件时使用的值。如果没有提供，则使用唯一 ID。"},"value-comparator":{default:"undefined",value:"",type:"(a: any, b: any) => boolean",description:"Apply a custom comparison algorithm to compare model-value and values contains in the items prop.",description_zh:"应用自定义比较算法来比较模型值和 items 属性中包含的值。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-selection-control/#props",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-selection-control/#props",typeDetail:{},events:[{name:"update:modelValue",description:"An event that is raised when a component's model-value changes.",description_zh:"当组件的 model-value 更改时引发的事件。",params:"[unknown]",value:""}],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{\n  backgroundColorClasses: Ref<string[]>\n  backgroundColorStyles: Ref<CSSProperties>\n}"},{name:"input",description:"The slot used for the default input element.",description_zh:"用于默认 input 元素的插槽。",params:"{\n  model: WritableComputedRef<boolean>\n  textColorClasses: Ref<string[]>\n  textColorStyles: Ref<CSSProperties>\n  backgroundColorClasses: Ref<string[]>\n  backgroundColorStyles: Ref<CSSProperties>\n  inputNode: VNode<RendererNode, RendererElement, { [key: string]: any }>\n  icon:\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n  props: {\n    onBlur: (e: Event) => void\n    onFocus: (e: FocusEvent) => void\n    id: string\n  }\n}"},{name:"label",description:"The default slot of the v-label or v-field-label component.",description_zh:"v-label 或 v-field-label 组件的默认插槽。",params:"{ label: string; props: Record<string, unknown> }"}]},re={name:"VSelectionControlGroup",props:{color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},"defaults-target":{default:"VSelectionControl",value:"",type:"string",description:"The target component to provide defaults values for.",description_zh:"要为其提供默认值的目标组件。"},density:{default:"default",value:"",type:"default / comfortable / compact",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。"},disabled:{default:"null",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},error:{default:"false",value:"",type:"boolean",description:"Puts the input in a manual error state.",description_zh:"将输入置于手动错误状态。"},"false-icon":{default:"undefined",value:"",type:"any",description:"The icon used when it is inactive.",description_zh:"处于不活动状态时使用的图标。"},id:{default:"undefined",value:"",type:"string",description:"Sets the DOM id on the component.",description_zh:"设置组件上的 DOM ID。"},inline:{default:"false",value:"",type:"boolean",description:"Puts children inputs into a row.",description_zh:"将子输入放入一行中。"},":v-model":{default:"undefined",value:"",type:"unknown",description:"The value of the component v-mode. If the component supports variants, the default is an empty array.",description_zh:"组件 v-mode 的值。如果组件支持多属性，默认为空数组。"},multiple:{default:"null",value:"",type:"boolean",description:"Changes select to multiple. Accepts array for value.",description_zh:"选择更改为多个。接受 value 的数组。"},name:{default:"undefined",value:"",type:"string",description:"Set the name property of the component.",description_zh:"设置组件的 name 属性."},readonly:{default:"null",value:"",type:"boolean",description:"Puts input in readonly state.",description_zh:"将输入置于只读状态。"},ripple:{default:"true",value:"",type:"boolean",description:"Apply the v-ripple directive.",description_zh:"应用 v-ripple 指令。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},"true-icon":{default:"undefined",value:"",type:"any",description:"The icon used when it is active.",description_zh:"处于激活状态时使用的图标."},type:{default:"undefined",value:"",type:"string",description:"Provides the default type for children selection controls.",description_zh:"为子项选择控件提供默认类型。"},"value-comparator":{default:"undefined",value:"",type:"(a: any, b: any) => boolean",description:"Apply a custom comparison algorithm to compare model-value and values contains in the items prop.",description_zh:"应用自定义比较算法来比较模型值和 items 属性中包含的值。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-selection-control-group/#props",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-selection-control-group/#props",typeDetail:{},events:[{name:"update:modelValue",description:"An event that is raised when a component's model-value changes.",description_zh:"当组件的 model-value 更改时引发的事件。",params:"[unknown]",value:""}],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},ii={name:"VSheet",props:{border:{default:"false",value:"",type:"string | number | boolean",description:"Apply a border style to the component.",description_zh:"应用边框样式到组件。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},elevation:{default:"undefined",value:"",type:"string | number",description:"The elevation of the component is acceptable from 0 to 24. You can read more on the Elevation page.",description_zh:"组件的海拔可接受 0 到 24 之间的值。你可以在 elevation page 浏览更多信息。"},height:{default:"undefined",value:"",type:"string | number",description:"Sets the height of the component.",description_zh:"设定组件的高度。",required:!0},location:{default:"undefined",value:"",type:"Anchor",description:"Specifies the component’s location. Can combine by using a space separated string.",description_zh:"指定组件的位置。可以使用空格分隔的字符串进行组合。"},"max-height":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum height of the component.",description_zh:"设定组件的最大高度。"},"max-width":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum width of the component.",description_zh:"设定组件的最大宽度。"},"min-height":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum height of the component.",description_zh:"设定组件的最小高度。"},"min-width":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum width of the component.",description_zh:"设定组件的最小宽度。"},position:{default:"undefined",value:"",type:"static / relative / fixed / absolute / sticky",description:"Sets the position for the component.",description_zh:"设置元件的位置。"},rounded:{default:"undefined",value:"",type:"string | number | boolean",description:"Applies the border-radius style to the specified component. You can get more information about this on the Corner Radius of Borders page",description_zh:"对指定的组件应用 border-radius 样式。您可以在 边框的圆角半径页面 获取更多有关信息"},tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},width:{default:"undefined",value:"",type:"string | number",description:"Sets the width of the component.",description_zh:"设定组件的宽度。",required:!0}},link:"https://vuetifyjs.com/zh-Hans/api/v-sheet/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-sheet/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},se={name:"VSkeletonLoader",props:{boilerplate:{default:"false",value:"",type:"boolean",description:"Remove the loading animation from the skeleton.",description_zh:"从骨架中删除加载动画。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},elevation:{default:"undefined",value:"",type:"string | number",description:"The elevation of the component is acceptable from 0 to 24. You can read more on the Elevation page.",description_zh:"组件的海拔可接受 0 到 24 之间的值。你可以在 elevation page 浏览更多信息。"},height:{default:"undefined",value:"",type:"string | number",description:"Sets the height of the component.",description_zh:"设定组件的高度。"},loading:{default:"false",value:"",type:"boolean",description:"A loading animation is applied, and the loading cursor is loaded on hover. A value of false will only work if there is content in the default slot.",description_zh:"应用一个加载动画，加载光标在悬停时加载。false 的值只有在 default 槽中有内容时才会工作。"},"loading-text":{default:"$vuetify.loading",value:"",type:"string",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"},"max-height":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum height of the component.",description_zh:"设定组件的最大高度。"},"max-width":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum width of the component.",description_zh:"设定组件的最大宽度。"},"min-height":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum height of the component.",description_zh:"设定组件的最小高度。"},"min-width":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum width of the component.",description_zh:"设定组件的最小宽度。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},type:{default:"ossein",value:"",type:" / 'avatar' / 'button' / 'chip' / 'divider' / 'heading' / 'image' / 'text' / 'sentences' / 'paragraph' / 'ossein' / 'actions' / 'article' / 'card' / 'card-avatar' / 'date-picker' / 'date-picker-options' / 'date-picker-days' / 'list-item' / 'list-item-avatar' / 'list-item-two-line' / 'list-item-avatar-two-line' / 'list-item-three-line' / 'list-item-avatar-three-line' / 'subtitle' / 'table' / 'table-heading' / 'table-thead' / 'table-tbody' / 'table-row-divider' / 'table-row' / 'table-tfoot' / (string & {}) / ( | 'avatar' | 'button' | 'chip' | 'divider' | 'heading' | 'image' | 'text' | 'sentences' | 'paragraph' | 'ossein' | 'actions' | 'article' | 'card' | 'card-avatar' | 'date-picker' | 'date-picker-options' | 'date-picker-days' | 'list-item' | 'list-item-avatar' | 'list-item-two-line' | 'list-item-avatar-two-line' | 'list-item-three-line' | 'list-item-avatar-three-line' | 'subtitle' | 'table' | 'table-heading' | 'table-thead' | 'table-tbody' | 'table-row-divider' | 'table-row' | 'table-tfoot' | (string & {}))[]",description:'Strings separate the list of skeleton components to be created, such as type="text@3" and type="card, list-item". The appropriate framework will be recursively generated based on the strings provided. Abbreviations for multiple elements, such as article@3 and paragraph@2, are also supported, which will generate 3 article skeletons and 2 paragraph skeletons. See below for a list of available predefined options.',description_zh:'字符串分隔要创建的骨架组件列表，例如 type="text@3" 和 type="card, list-item"。将根据提供的字符串递归生成相应的框架。 还支持多个元素的简写，例如 article@3 和 paragraph@2 ，它们将生成 3 article skeletons and 2 paragraph 骨架。 请参阅下面的可用预定义选项列表。',required:!0},width:{default:"undefined",value:"",type:"string | number",description:"Sets the width of the component.",description_zh:"设定组件的宽度。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-skeleton-loader/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-skeleton-loader/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},le={name:"VSlideGroup",props:{"center-active":{default:"false",value:"",type:"boolean",version:"",description:"Forces the selected component to be centered.",description_zh:"强制选定零部件居中。",required:!1},direction:{default:"'horizontal'",value:"",type:"horizontal / vertical",version:"",description:"Switch between horizontal and vertical modes.",description_zh:"在水平和垂直模式之间切换。",required:!1},disabled:{default:"false",value:"",type:"boolean",version:"",description:"Puts all children components into a disabled state.",description_zh:"将所有子组件置于禁用状态。",required:!1},mandatory:{default:"false",value:"",type:"boolean / force",version:"",description:"Forces at least one item to always be selected (if available).",description_zh:"强制始终选择至少一个项目（如果可用）。",required:!1},":max":{default:"undefined",value:"",type:"number",version:"",description:"Sets a maximum number of selections that can be made.",description_zh:"设置可以进行的最大选择数。",required:!1},mobile:{default:"null",value:"",type:"boolean",version:"",description:"Determines the display mode of the component. If true, the component will be displayed in mobile mode. If false, the component will be displayed in desktop mode. If null, will be based on the current mobile-breakpoint",description_zh:"确定组件的显示模式。如果为 true，则组件将以移动模式显示。如果为 false，则组件将以桌面模式显示。如果为 null，则将基于当前的 mobile-breakpoint",required:!1},"mobile-breakpoint":{default:"undefined",value:"",type:"number / xs / sm / md / lg / xl / xxl",version:"",description:"Sets the designated mobile breakpoint for the component.",description_zh:"为组件设置指定的移动断点。",required:!1},"v-model":{default:"undefined",value:"",type:"unknown",version:"",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v-model 值。如果 component 支持 multiple prop，则默认为空数组。",required:!1},multiple:{default:"false",value:"",type:"boolean",version:"",description:"Allows one to select multiple items.",description_zh:"允许选择多个项目。",required:!1},"next-icon":{default:"'$next'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"The appended slot when arrows are shown.",description_zh:"显示箭头时附加的插槽。",required:!1},"prev-icon":{default:"'$prev'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"The prepended slot when arrows are shown.",description_zh:"显示箭头时的前置槽。",required:!1},"selected-class":{default:"'v-slide-group-item--active'",value:"",type:"string",version:"",description:"Configure the active CSS class applied when an item is selected.",description_zh:"配置在选择项目时应用的活动 CSS 类。",required:!1},"show-arrows":{default:"false",value:"",type:"string | boolean",version:"",description:"Change when the overflow arrow indicators are shown. By default, arrows always display on Desktop when the container is overflowing. When the container overflows on mobile, arrows are not shown by default. A show-arrows value of true allows these arrows to show on Mobile if the container overflowing. A value of desktop always displays arrows on Desktop while a value of mobile always displays arrows on Mobile. A value of always always displays arrows on Desktop and Mobile. Find more information on how to customize breakpoint thresholds on the breakpoints page.",description_zh:"更改显示溢出箭头指示器的时间。默认情况下，当容器溢出时，箭头始终显示在 Desktop 上。当容器在移动设备上溢出时，默认情况下不显示箭头。如果 show-arrows 值为 true，则允许这些箭头在容器溢出时显示在 Mobile 上。值 desktop 始终在 Desktop 上显示箭头，而值 mobile 始终在 Mobile 上显示箭头。值 always 在 Desktop 和 Mobile 上始终显示箭头。在 breakpoints 页面上查找有关如何自定义断点阈值的更多信息。",required:!1},symbol:{default:"undefined",value:"",type:"any",version:"",description:"The Symbol used to hook into group functionality for components like v-btn-toggle and v-bottom-navigation.",description_zh:"用于钩入组件（如 v-btn-toggle 和 v-bottom-navigation）的组功能的 Symbol。",required:!1},tag:{default:"'div'",value:"",type:"string",version:"",description:"Specify a custom tag used on the root element.",description_zh:"指定根元素上使用的自定义标记。",required:!1}},link:"https://vuetifyjs.com/en/api/v-slide-group/",link_zh:"https://vuetifyjs.com/en/api/v-slide-group/",typeDetail:{},events:[{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件的模型更改时发出的事件。",params:"[unknown]",value:""}],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{\n  next: () => void\n  prev: () => void\n  select: (id: number, value: boolean) => void\n  isSelected: (id: number) => boolean\n}"},{name:"next",description:"The next slot.",description_zh:"下一个插槽。",params:"{\n  next: () => void\n  prev: () => void\n  select: (id: number, value: boolean) => void\n  isSelected: (id: number) => boolean\n}"},{name:"prev",description:"The prev slot.",description_zh:"prev 插槽。",params:"{\n  next: () => void\n  prev: () => void\n  select: (id: number, value: boolean) => void\n  isSelected: (id: number) => boolean\n}"}],exposed:[{name:"focus",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(location: 'prev' | 'next' | 'first' | 'last') => void"},{name:"hasNext",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"hasPrev",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"scrollOffset",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"number"},{name:"scrollTo",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(location: 'prev' | 'next') => void"},{name:"selected",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"number[]"}],suggestions:["v-slide-group-item"]},de={name:"VSlideGroupItem",props:{disabled:{default:"false",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},"selected-class":{default:"undefined",value:"",type:"string",description:"Configure the name of the CSS class that will be applied when the selected item is selected.",description_zh:"配置被选中项目时应用的 CSS 类名。"},value:{default:"undefined",value:"",type:"any",description:"The value used when selecting a component in a group. If not provided, a unique ID is used.",description_zh:"在组中选择组件时使用的值。如果没有提供，则使用唯一 ID。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-slide-group-item/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-slide-group-item/#links",typeDetail:{},events:[{name:"group:selected",description:"Event that is emitted when an item is selected within a group.",description_zh:"在组中选择项目时发出的事件。",params:"[{ value: boolean }]",value:""}],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{\n  isSelected: boolean\n  select: (value: boolean) => void\n  toggle: () => void\n  selectedClass: false | string[]\n}"}]},ni={name:"VSlider",props:{"append-icon":{default:"undefined",value:"",type:"any",description:"Creates a v-icon component after default content in the append slot.",description_zh:"在追加槽中的默认内容之后创建一个 v-icon 组件。"},"center-affix":{default:"true",value:"",type:"boolean",description:"Vertically align appendInner, prependInner, clearIcon and label in the center.",description_zh:"将 appendInner、prependInner、clearIcon 和标签垂直对齐在中心。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},density:{default:"default",value:"",type:"default / comfortable / compact",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。"},direction:{default:"horizontal",value:"",type:"horizontal / vertical",description:"Change the input direction.",description_zh:"改变输入方向."},disabled:{default:"null",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},elevation:{default:"2",value:"",type:"string | number",description:"The elevation of the component is acceptable from 0 to 24. You can read more on the Elevation page.",description_zh:"组件的海拔可接受 0 到 24 之间的值。你可以在 elevation page 浏览更多信息。"},error:{default:"false",value:"",type:"boolean",description:"Set the input box to a manual error state.",description_zh:"将输入框设置为手动错误状态。"},"error-messages":{default:"[]",value:"",type:"string | string[]",description:"Put the input box into an error state and pass in a custom error message. will be combined with any validation from the rules property. This field does not trigger validation.",description_zh:"将输入框置于错误状态，并传入自定义的错误信息。将与来自 rules 属性的任何验证相结合。这个字段不会触发验证。"},focused:{default:"false",value:"",type:"boolean",description:"Force the component to use the style when focused.",description_zh:"强制组件使用聚焦时的样式。"},"hide-details":{default:"false",value:"",type:"boolean / auto",description:"Hide hints and validation errors. When set to auto and only displays information (prompts, error messages, counter values, etc.) to display.",description_zh:"隐藏提示和验证错误。当设置为 auto 并且只有在有信息（提示、错误信息、计数器值等）要显示时，才会显示信息。"},"hide-spin-buttons":{default:"false",value:"",type:"boolean",description:"When the type is set to number, the rotation button is hidden on the input element.",description_zh:"当类型设置为 number 时，在 input 元素上隐藏旋转按钮。"},hint:{default:"undefined",value:"",type:"string",description:"Displays hint text below the input when focused. Force this always open with the persistent-hint property.",description_zh:"聚焦时在输入下方显示提示文本。使用 persistent-hint 属性强制它始终打开。"},id:{default:"undefined",value:"",type:"string",description:"Sets the DOM id on the component.",description_zh:"设置组件上的 DOM ID。"},label:{default:"undefined",value:"",type:"string",description:"Sets the text of the v-label or v-field-label component.",description_zh:"设置 v-label 或 v-field-label 组件的文本。"},max:{default:"100",value:"",type:"string | number",description:"Sets the maximum allowed value.",description_zh:"设置允许的最大值。"},"max-errors":{default:"1",value:"",type:"string | number",description:"Control the maximum number of shown errors from validation.",description_zh:"控制验证中显示的最大错误数。"},messages:{default:"[]",value:"",type:"string | string[]",description:"Display a list of messages or messages (if using strings)",description_zh:"显示消息列表或消息（如果使用字符串）"},min:{default:"0",value:"",type:"string | number",description:"Sets the minimum allowed value.",description_zh:"设置允许的最小值。"},":v-model":{default:"0",value:"",type:"string | number",description:"The value of the component v-mode. If the component supports variants, the default is an empty array.",description_zh:"组件 v-mode 的值。如果组件支持多属性，默认为空数组。"},name:{default:"undefined",value:"",type:"string",description:"Set the name property of the component.",description_zh:"设置组件的 name 属性."},"persistent-hint":{default:"false",value:"",type:"boolean",description:"Forces hint to always be visible.",description_zh:"力暗示始终可见。"},"prepend-icon":{default:"undefined",value:"",type:"any",description:"Prepends an icon to the component, uses the same syntax as v-icon.",description_zh:"在组件前面添加一个图标，使用与 v-icon 相同的语法。"},readonly:{default:"null",value:"",type:"boolean",description:"Puts input in readonly state.",description_zh:"将输入置于只读状态。"},reverse:{default:"false",value:"",type:"boolean",description:"Reverses the slider direction.",description_zh:"反转滑块方向。"},ripple:{default:"true",value:"",type:"boolean",description:"Apply the v-ripple directive.",description_zh:"应用 v-ripple 指令。"},rounded:{default:"undefined",value:"",type:"string | number | boolean",description:"Applies the border-radius style to the specified component. You can get more information about this on the Corner Radius of Borders page",description_zh:"对指定的组件应用 border-radius 样式。您可以在 边框的圆角半径页面 获取更多有关信息"},rules:{default:"[]",value:"",type:"ValidationRule[]",description:"Accepts a mixed array of types function, boolean and string. Functions pass an input value as an argument and must return either true / false or a string containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) false or is a string.",description_zh:"接受 function、boolean 和 string 类型的混合数组。函数将输入值作为参数传递，并且必须返回 true / false 或包含错误消息的字符串。如果函数返回（或数组中的任何值包含）false 或字符串，则输入字段将进入错误状态。"},"show-ticks":{default:"false",value:"",type:"boolean / always",description:"Displays tick marks. If true, tick marks will be displayed when using the slider. If set to 'always', it will always show tick marks.",description_zh:"显示刻度线。如果 true ，使用滑块时将显示刻度线。如果设置为 'always' ，它总是显示刻度线。"},step:{default:"0",value:"",type:"string | number",description:"If greater than 0, sets step interval for ticks.",description_zh:"如果大于 0，则设置刻度的步进间隔。"},"thumb-color":{default:"undefined",value:"",type:"string",description:"Sets the thumb and thumb label color.",description_zh:"设置拇指和拇指标签颜色。"},"thumb-label":{default:"undefined",value:"",type:"boolean / always",description:"Thumb labels are displayed",description_zh:"显示拇指标签"},"thumb-size":{default:"20",value:"",type:"string | number",description:"Controls the size of the thumbnail label.",description_zh:"控制缩略图标签的大小。"},ticks:{default:"undefined",value:"",type:"number[] | Record<number, string>",description:"Displays tick marks. If true, tick marks will be displayed when using the slider. If set to 'always', it will always show tick marks.",description_zh:"显示刻度线。如果 true ，使用滑块时将显示刻度线。如果设置为 'always' ，它总是显示刻度线。"},"tick-size":{default:"2",value:"",type:"string | number",description:"Controls the size of ticks",description_zh:"控制 ticks 的大小"},"track-color":{default:"undefined",value:"",type:"string",description:"Sets the tick mark color",description_zh:"设置刻度线颜色"},"track-fill-color":{default:"undefined",value:"",type:"string",description:"Sets the tick fill color",description_zh:"设置刻度线填充颜色"},"track-size":{default:"4",value:"",type:"string | number",description:"Sets the track’s size (height).",description_zh:"设置轨道的大小（高度）。"},"validate-on":{default:"undefined",value:"",type:" / blur / input / submit / blur lazy / input lazy / submit lazy / lazy blur / lazy input / lazy submit / lazy",description:"Change what type of event triggers validation to run.",description_zh:"更改触发要运行的验证的事件类型。"},"validation-value":{default:"undefined",value:"",type:"any",description:"The value used when applying validation rules.",description_zh:"应用验证规则时使用的值。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-slider/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-slider/#links",typeDetail:{},events:[{name:"click:append",description:"Emitted when appended icon is clicked.",description_zh:"单击附加图标时发出。",params:"[MouseEvent]",value:""},{name:"click:prepend",description:"Emitted when prepended icon is clicked.",description_zh:"单击前置图标时发出。",params:"[MouseEvent]",value:""},{name:"end3.2.0 版本的新特色",description:"Slider value emitted at the end of slider movement.",description_zh:"滑块移动结束时发出的滑块值。",params:"[number]",value:""},{name:"start3.2.0 版本的新特色",description:"Slider value emitted at start of slider movement.",description_zh:"滑块移动开始时发出的滑块值。",params:"[number]",value:""},{name:"update:focused",description:"Event that is emitted when the component’s focus state changes.",description_zh:"当组件的焦点状态更改时发出的事件。",params:"[boolean]",value:""},{name:"update:modelValue",description:"An event that is raised when a component's model-value changes.",description_zh:"当组件的 model-value 更改时引发的事件。",params:"[number]",value:""}],methods:[],slots:[{name:"append",description:"Adds an item inside the input and after input content.",description_zh:"在 input 内容内和 After input 内容中添加一个项目。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"details",description:"Slot for custom input details to modifying the display of messages.",description_zh:"用于修改消息显示的自定义输入详细信息的插槽。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"label",description:"The default slot of the v-label or v-field-label component.",description_zh:"v-label 或 v-field-label 组件的默认插槽。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"message",description:"Slot used to customize the message content.",description_zh:"用于自定义消息内容的插槽。",params:"{ message: string }"},{name:"prepend",description:"Adds an item outside the input and before input content.",description_zh:"在输入内容之外和之前添加项目。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"thumb-label",description:"Slot for the thumb label.",description_zh:"Thumb 标签的插槽。",params:"{ modelValue: number }"},{name:"tick-label",description:"Slot for the tick label.",description_zh:"刻度标签的插槽。",params:"{\n  tick: { value: number; position: number; label: string }\n  index: number\n}"}]},pe={name:"VSlideXReverseTransition",props:{disabled:{default:"false",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},group:{default:"false",value:"",type:"boolean",description:"Creates a transition-group component. You can find more information in the vue docs.",description_zh:"创建转换组组件。你可以在 vue 文档中找到更多信息。"},"hide-on-leave":{default:"false",value:"",type:"boolean",description:"Hides the leaving element (no exit animation).",description_zh:"隐藏离开元素（无退出动画）。"},"leave-absolute":{default:"false",value:"",type:"boolean",description:"Absolutely positions the leaving element (useful for FLIP).",description_zh:"绝对定位离开元素（对 FLIP 有用）。"},mode:{default:"undefined",value:"",type:"string",description:"Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation for transition modes.",description_zh:"设置过渡模式（不适用于过渡组）。你可以在 Vue 文档中找到更多关于过渡模式的信息。"},origin:{default:"undefined",value:"",type:"string",description:"Sets the origin of the animation on the element. You can explore more for transition origin on the MDN documentation",description_zh:"设置元素上的动画原点。您可以在 MDN 文档上浏览更多 for transition origin"}},link:"https://vuetifyjs.com/zh-Hans/api/v-slide-x-reverse-transition/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-slide-x-reverse-transition/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},ue={name:"VSlideXTransition",props:{disabled:{default:"false",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},group:{default:"false",value:"",type:"boolean",description:"Creates a transition-group component. You can find more information in the vue docs.",description_zh:"创建转换组组件。你可以在 vue 文档中找到更多信息。"},"hide-on-leave":{default:"false",value:"",type:"boolean",description:"Hides the leaving element (no exit animation).",description_zh:"隐藏离开元素（无退出动画）。"},"leave-absolute":{default:"false",value:"",type:"boolean",description:"Absolutely positions the leaving element (useful for FLIP).",description_zh:"绝对定位离开元素（对 FLIP 有用）。"},mode:{default:"undefined",value:"",type:"string",description:"Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation for transition modes.",description_zh:"设置过渡模式（不适用于过渡组）。你可以在 Vue 文档中找到更多关于过渡模式的信息。"},origin:{default:"undefined",value:"",type:"string",description:"Sets the origin of the animation on the element. You can explore more for transition origin on the MDN documentation",description_zh:"设置元素上的动画原点。您可以在 MDN 文档上浏览更多 for transition origin"}},link:"https://vuetifyjs.com/zh-Hans/api/v-slide-x-transition/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-slide-x-transition/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},ce={name:"VSlideYReverseTransition",props:{disabled:{default:"false",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},group:{default:"false",value:"",type:"boolean",description:"Creates a transition-group component. You can find more information in the vue docs.",description_zh:"创建转换组组件。你可以在 vue 文档中找到更多信息。"},"hide-on-leave":{default:"false",value:"",type:"boolean",description:"Hides the leaving element (no exit animation).",description_zh:"隐藏离开元素（无退出动画）。"},"leave-absolute":{default:"false",value:"",type:"boolean",description:"Absolutely positions the leaving element (useful for FLIP).",description_zh:"绝对定位离开元素（对 FLIP 有用）。"},mode:{default:"undefined",value:"",type:"string",description:"Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation for transition modes.",description_zh:"设置过渡模式（不适用于过渡组）。你可以在 Vue 文档中找到更多关于过渡模式的信息。"},origin:{default:"undefined",value:"",type:"string",description:"Sets the origin of the animation on the element. You can explore more for transition origin on the MDN documentation",description_zh:"设置元素上的动画原点。您可以在 MDN 文档上浏览更多 for transition origin"}},link:"https://vuetifyjs.com/zh-Hans/api/v-slide-y-reverse-transition/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-slide-y-reverse-transition/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},he={name:"VSlideYTransition",props:{disabled:{default:"false",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},group:{default:"false",value:"",type:"boolean",description:"Creates a transition-group component. You can find more information in the vue docs.",description_zh:"创建转换组组件。你可以在 vue 文档中找到更多信息。"},"hide-on-leave":{default:"false",value:"",type:"boolean",description:"Hides the leaving element (no exit animation).",description_zh:"隐藏离开元素（无退出动画）。"},"leave-absolute":{default:"false",value:"",type:"boolean",description:"Absolutely positions the leaving element (useful for FLIP).",description_zh:"绝对定位离开元素（对 FLIP 有用）。"},mode:{default:"undefined",value:"",type:"string",description:"Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation for transition modes.",description_zh:"设置过渡模式（不适用于过渡组）。你可以在 Vue 文档中找到更多关于过渡模式的信息。"},origin:{default:"undefined",value:"",type:"string",description:"Sets the origin of the animation on the element. You can explore more for transition origin on the MDN documentation",description_zh:"设置元素上的动画原点。您可以在 MDN 文档上浏览更多 for transition origin"}},link:"https://vuetifyjs.com/zh-Hans/api/v-slide-y-transition/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-slide-y-transition/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},oi={name:"VSnackbar",props:{absolute:{default:"false",value:"",type:"boolean",version:"",description:"Applies position: absolute to the content element.",description_zh:"将 position： absolute 应用于 content 元素。",required:!1},activator:{default:"undefined",value:"",type:"Element | 'parent' | (string & {}) | ComponentPublicInstance",version:"",description:"Explicitly sets the overlay’s activator.",description_zh:"显式设置叠加层的激活器。",required:!1},"activator-props":{default:"{}",value:"",type:"unknown",version:"",description:"Apply custom properties to the activator.",description_zh:"将自定义属性应用于激活器。",required:!1},attach:{default:"false",value:"",type:"string | boolean | Element",version:"",description:"Specifies which DOM element the overlay content should teleport to. Can be a direct element reference, querySelector string, or true to disable teleporting. Uses body by default.",description_zh:"指定覆盖内容应传送到哪个 DOM 元素。可以是直接元素引用、querySelector 字符串或 true，以禁用传送。默认使用 body。",required:!1},"close-delay":{default:"undefined",value:"",type:"string | number",version:"",description:"Milliseconds to wait before closing component. Only applies to hover and focus events.",description_zh:"关闭组件之前等待的毫秒数。仅适用于悬停和焦点事件。",required:!1},"close-on-back":{default:"true",value:"",type:"boolean",version:"",description:"Closes the overlay content when the browser’s back button is pressed or $router.back() is called, cancelling the original navigation. persistent overlays will cancel navigation and animate as if they were clicked outside instead of closing.",description_zh:"在按下浏览器的后退按钮或调用 $router.back（） 时关闭覆盖内容，从而取消原始导航。永久叠加将取消导航并制作动画，就像在外部单击而不是关闭一样。",required:!1},"close-on-content-click":{default:"false",value:"",type:"boolean",version:"",description:"Closes component when you click on its content.",description_zh:"单击组件内容时关闭组件。",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},contained:{default:"false",value:"",type:"boolean",version:"",description:"Limits the size of the component and scrim to its offset parent. Implies absolute and attach. (Note: The parent element must have position: relative.).",description_zh:"将零部件和纱布的大小限制为其偏移父级。暗示 absolute 和 attach。（注意：父元素必须具有 position： relative。",required:!1},"content-class":{default:"undefined",value:"",type:"any",version:"",description:"Applies a custom class to the detached element. This is useful because the content is moved to the beginning of the v-app component (unless the attach prop is provided) and is not targetable by classes passed directly on the component.",description_zh:"将自定义类应用于分离的元素。这很有用，因为内容被移动到 v-app 组件的开头（除非提供了 attach 属性），并且不能被直接在组件上传递的类所定位。",required:!1},"content-props":{default:"undefined",value:"",type:"any",version:"",description:"Apply custom properties to the content.",description_zh:"将自定义属性应用于内容。",required:!1},disabled:{default:"false",value:"",type:"boolean",version:"",description:"Removes the ability to click or target the component.",description_zh:"删除单击组件或定位组件的功能。",required:!1},eager:{default:"false",value:"",type:"boolean",version:"",description:"Forces the component’s content to render when it mounts. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO.",description_zh:"强制组件的内容在挂载时呈现。如果您的内容不会在 DOM 中呈现，并且您希望为 SEO 抓取，这将非常有用。",required:!1},height:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the height for the component.",description_zh:"设置组件的高度。",required:!1},location:{default:"'bottom'",value:"",type:"Anchor",version:"",description:"Specifies the anchor point for positioning the component, using directional cues to align it either horizontally, vertically, or both…",description_zh:"指定用于定位组件的锚点，使用方向提示将其水平对齐、垂直对齐或两者对齐......",required:!1},"location-strategy":{default:"'static'",value:"",type:"static / connected / LocationStrategyFn",version:"",description:"A function used to specifies how the component should position relative to its activator.",description_zh:"用于指定组件相对于其激活器的位置的函数。",required:!1},"max-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum height for the component.",description_zh:"设置组件的最大高度。",required:!1},"max-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。",required:!1},"min-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum height for the component.",description_zh:"设置组件的最小高度。",required:!1},"min-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum width for the component.",description_zh:"设置组件的最小宽度。",required:!1},":v-model":{default:"false",value:"",type:"boolean",version:"",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v-model 值。如果 component 支持 multiple prop，则默认为空数组。",required:!0},"multi-line":{default:"false",value:"",type:"boolean",version:"",description:"Gives the snackbar a larger minimum height.",description_zh:"为信息提示控件提供更大的最小高度。",required:!1},offset:{default:"undefined",value:"",type:"string | number | number[]",version:"",description:"A single value that offsets content away from the target based upon what side it is on.",description_zh:"一个值，该值根据内容所在的一侧将内容从目标偏移。",required:!1},opacity:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the overlay opacity.",description_zh:"设置叠加不透明度。",required:!1},"open-delay":{default:"undefined",value:"",type:"string | number",version:"",description:"Milliseconds to wait before opening component. Only applies to hover and focus events.",description_zh:"打开组件之前等待的毫秒数。仅适用于悬停和焦点事件。",required:!1},"open-on-click":{default:"undefined",value:"",type:"boolean",version:"",description:"Activate the component when the activator is clicked.",description_zh:"单击激活器时激活组件。",required:!1},"open-on-focus":{default:"undefined",value:"",type:"boolean",version:"",description:"Activate the component when the activator is focused.",description_zh:"当激活器聚焦时激活组件。",required:!1},"open-on-hover":{default:"false",value:"",type:"boolean",version:"",description:"Activate the component when the activator is hovered.",description_zh:"将鼠标悬停在激活器上时激活组件。",required:!1},origin:{default:"'auto'",value:"",type:"Anchor / auto / overlap",version:"",description:"Sets the transition origin on the element. You can find more information on the MDN documentation for transition origin.",description_zh:"设置元素上的过渡原点。您可以在 transition origin 的 MDN 文档上找到更多信息。",required:!1},position:{default:"undefined",value:"",type:"static / relative / fixed / absolute / sticky",version:"",description:"Sets the position for the component.",description_zh:"设置零部件的位置。",required:!1},rounded:{default:"undefined",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. Find more information on available border radius classes on the Border Radius page.",description_zh:"指定应用于组件的 border-radius。这可以是 0、xs、sm、true、lg、xl、pill、circle 和 shaped。在 Border Radius 页面上查找有关可用边界半径类的更多信息。",required:!1},target:{default:"undefined",value:"",type:"  | Element  | 'parent'  | 'cursor'  | (string & {})  | ComponentPublicInstance  | [number, number]",version:"",description:"For locationStrategy=“connected”, specify an element or array of x,y coordinates that the overlay should position itself relative to. This will be the activator element by default.",description_zh:"对于 locationStrategy=“connected”，指定叠加层应相对于其定位自身的 x，y 坐标的元素或数组。默认情况下，这将是 activator 元素。",required:!1},text:{default:"undefined",value:"",type:"string",version:"",description:"Specify content text for the component.",description_zh:"指定组件的内容文本。",required:!1},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},tile:{default:"false",value:"",type:"boolean",version:"",description:"Removes any applied border-radius from the component.",description_zh:"从组件中删除任何应用的 border-radius。",required:!1},timeout:{default:"5000",value:"",type:"string | number",version:"",description:"Time (in milliseconds) to wait until snackbar is automatically hidden. Use -1 to keep open indefinitely (0 in version < 2.3 ). It is recommended for this number to be between 4000 and 10000. Changes to this property will reset the timeout.",description_zh:"等待信息提示控件自动隐藏之前的时间 （毫秒）。使用 -1 可无限期保持打开状态（在版本 < 2.3 中为 0 ）。建议此数字介于 4000 和 10000 之间。更改此属性将重置超时。",required:!1},timer:{default:"false",value:"",type:"string | boolean",version:"",description:"Display a progress bar that counts down until the snackbar closes. Pass a string to set a custom color, otherwise uses info.",description_zh:"显示一个进度条，该进度条会倒计时，直到信息提示控件关闭。传递一个字符串来设置自定义颜色，否则使用 info。",required:!1},transition:{default:"'v-snackbar-transition'",value:"",type:"string | boolean | (TransitionProps & { component: Component })",version:"",description:"Sets the component transition. Can be one of the built in or custom transition.",description_zh:"设置零部件过渡。可以是内置或自定义过渡之一。",required:!1},variant:{default:"'elevated'",value:"",type:"text / flat / elevated / tonal / outlined / plain",version:"",description:"Applies a distinct style to the component.",description_zh:"将不同的样式应用于组件。",required:!1},vertical:{default:"false",value:"",type:"boolean",version:"",description:"Stacks snackbar content on top of the actions (button).",description_zh:"将信息提示控件内容堆叠在操作（按钮）的顶部。",required:!1},width:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the width for the component.",description_zh:"设置组件的宽度。",required:!1},"z-index":{default:"2000",value:"",type:"string | number",version:"",description:"The z-index used for the component.",description_zh:"用于组件的 z-index。",required:!1}},link:"https://vuetifyjs.com/en/api/v-snackbar/",link_zh:"https://vuetifyjs.com/en/api/v-snackbar/",typeDetail:{},events:[{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件的模型更改时发出的事件。",params:"[boolean]",value:""}],methods:[],slots:[{name:"actions",description:"Used to bind styles to v-btn to match MD2 specification.",description_zh:"用于将样式绑定到 v-btn 以匹配 MD2 规范。",params:"{ isActive: Ref<boolean> }"},{name:"activator",description:"When used, will activate the component when clicked (or hover for specific components). This manually stops the event propagation. Without this slot, if you open the component through its model, you will need to manually stop the event propagation.",description_zh:"使用时，将在单击时激活组件（或将鼠标悬停在特定组件上）。这将手动停止事件传播。如果没有此插槽，如果通过其模型打开组件，则需要手动停止事件传播。",params:"{ isActive: boolean; props: Record<string, any> }"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:""},{name:"text",description:"Slot for the component’s text content.",description_zh:"组件文本内容的插槽。",params:""}],exposed:[{name:"activatorEl",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"HTMLElement"},{name:"animateClick",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"() => void"},{name:"contentEl",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"HTMLElement"},{name:"globalTop",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"localTop",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"scrimEl",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"HTMLElement"},{name:"target",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"HTMLElement | [number, number]"},{name:"updateLocation",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"(e: Event) => void"}]},me={name:"VSnackbarQueue",props:{absolute:{default:"false",value:"",type:"boolean",version:"",description:"Applies position: absolute to the content element.",description_zh:"将 position： absolute 应用于 content 元素。",required:!1},activator:{default:"undefined",value:"",type:"Element | 'parent' | (string & {}) | ComponentPublicInstance",version:"",description:"Explicitly sets the overlay’s activator.",description_zh:"显式设置叠加层的激活器。",required:!1},"activator-props":{default:"{}",value:"",type:"unknown",version:"",description:"Apply custom properties to the activator.",description_zh:"将自定义属性应用于激活器。",required:!1},attach:{default:"false",value:"",type:"string | boolean | Element",version:"",description:"Specifies which DOM element the overlay content should teleport to. Can be a direct element reference, querySelector string, or true to disable teleporting. Uses body by default.",description_zh:"指定覆盖内容应传送到哪个 DOM 元素。可以是直接元素引用、querySelector 字符串或 true，以禁用传送。默认使用 body。",required:!1},closable:{default:"false",value:"",type:"string | boolean",version:"",description:"Adds a dismiss button that closes the active snackbar.",description_zh:"添加一个关闭按钮，用于关闭活动信息提示控件。",required:!1},"close-delay":{default:"undefined",value:"",type:"string | number",version:"",description:"Milliseconds to wait before closing component. Only applies to hover and focus events.",description_zh:"关闭组件之前等待的毫秒数。仅适用于悬停和焦点事件。",required:!1},"close-on-back":{default:"true",value:"",type:"boolean",version:"",description:"Closes the overlay content when the browser’s back button is pressed or $router.back() is called, cancelling the original navigation. persistent overlays will cancel navigation and animate as if they were clicked outside instead of closing.",description_zh:"在按下浏览器的后退按钮或调用 $router.back（） 时关闭覆盖内容，从而取消原始导航。永久叠加将取消导航并制作动画，就像在外部单击而不是关闭一样。",required:!1},"close-on-content-click":{default:"false",value:"",type:"boolean",version:"",description:"Closes component when you click on its content.",description_zh:"单击组件内容时关闭组件。",required:!1},"close-text":{default:"'$vuetify.dismiss'",value:"",type:"string",version:"",description:"The text used in the close button when using the closable prop.",description_zh:"使用 closable 属性时 close 按钮中使用的文本。",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},contained:{default:"false",value:"",type:"boolean",version:"",description:"Limits the size of the component and scrim to its offset parent. Implies absolute and attach. (Note: The parent element must have position: relative.).",description_zh:"将零部件和纱布的大小限制为其偏移父级。暗示 absolute 和 attach。（注意：父元素必须具有 position： relative。",required:!1},"content-class":{default:"undefined",value:"",type:"any",version:"",description:"Applies a custom class to the detached element. This is useful because the content is moved to the beginning of the v-app component (unless the attach prop is provided) and is not targetable by classes passed directly on the component.",description_zh:"将自定义类应用于分离的元素。这很有用，因为内容被移动到 v-app 组件的开头（除非提供了 attach 属性），并且不能被直接在组件上传递的类所定位。",required:!1},"content-props":{default:"undefined",value:"",type:"any",version:"",description:"Apply custom properties to the content.",description_zh:"将自定义属性应用于内容。",required:!1},disabled:{default:"false",value:"",type:"boolean",version:"",description:"Removes the ability to click or target the component.",description_zh:"删除单击组件或定位组件的功能。",required:!1},eager:{default:"false",value:"",type:"boolean",version:"",description:"Forces the component’s content to render when it mounts. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO.",description_zh:"强制组件的内容在挂载时呈现。如果您的内容不会在 DOM 中呈现，并且您希望为 SEO 抓取，这将非常有用。",required:!1},height:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the height for the component.",description_zh:"设置组件的高度。",required:!1},location:{default:"'bottom'",value:"",type:"Anchor",version:"",description:"Specifies the anchor point for positioning the component, using directional cues to align it either horizontally, vertically, or both…",description_zh:"指定用于定位组件的锚点，使用方向提示将其水平对齐、垂直对齐或两者对齐......",required:!1},"location-strategy":{default:"'static'",value:"",type:"static / connected / LocationStrategyFn",version:"",description:"A function used to specifies how the component should position relative to its activator.",description_zh:"用于指定组件相对于其激活器的位置的函数。",required:!1},"max-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum height for the component.",description_zh:"设置组件的最大高度。",required:!1},"max-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。",required:!1},"min-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum height for the component.",description_zh:"设置组件的最小高度。",required:!1},"min-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum width for the component.",description_zh:"设置组件的最小宽度。",required:!1},"v-model":{default:"[]",value:"",type:"(  | string  | {      text: string      multiLine: boolean      timer: string | boolean      timeout: string | number      vertical: boolean      location: Anchor      position: 'static' | 'relative' | 'fixed' | 'absolute' | 'sticky'      absolute: boolean      rounded: string | number | boolean      tile: boolean      color: string      variant: 'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'      theme: string      closeOnBack: boolean      contained: boolean      contentClass: any      contentProps: any      disabled: boolean      opacity: string | number      zIndex: string | number      target:        | Element        | 'parent'        | 'cursor'        | (string & {})        | ComponentPublicInstance        | [number, number]      closeOnContentClick: boolean      style: StyleValue      class: any      height: string | number      maxHeight: string | number      maxWidth: string | number      minHeight: string | number      minWidth: string | number      width: string | number      eager: boolean      locationStrategy: 'static' | 'connected' | LocationStrategyFn      origin: Anchor | 'auto' | 'overlap'      offset: string | number | number[]      transition:        | string        | boolean        | (TransitionProps & { component: Component })      attach: string | boolean | Element      'v-slots': {        activator:          | false          | ((arg: {              isActive: boolean              props: Record<string, any>            }) => VNodeChild)        default: false | (() => VNodeChild)        actions: false | ((arg: { isActive: Ref<boolean> }) => VNodeChild)        text: false | (() => VNodeChild)      }      'v-slot:default': false | (() => VNodeChild)      'v-slot:activator':        | false        | ((arg: {            isActive: boolean            props: Record<string, any>          }) => VNodeChild)      key: string | number | symbol      ref: VNodeRef      ref_for: boolean      ref_key: string      onVnodeBeforeMount: VNodeMountHook | VNodeMountHook[]      onVnodeMounted: VNodeMountHook | VNodeMountHook[]      onVnodeBeforeUpdate: VNodeUpdateHook | VNodeUpdateHook[]      onVnodeUpdated: VNodeUpdateHook | VNodeUpdateHook[]      onVnodeBeforeUnmount: VNodeMountHook | VNodeMountHook[]      onVnodeUnmounted: VNodeMountHook | VNodeMountHook[]      'v-slot:actions':        | false        | ((arg: { isActive: Ref<boolean> }) => VNodeChild)      'v-slot:text': false | (() => VNodeChild)    })[]",version:"",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v-model 值。如果 component 支持 multiple prop，则默认为空数组。",required:!1},"multi-line":{default:"false",value:"",type:"boolean",version:"",description:"Gives the snackbar a larger minimum height.",description_zh:"为信息提示控件提供更大的最小高度。",required:!1},offset:{default:"undefined",value:"",type:"string | number | number[]",version:"",description:"A single value that offsets content away from the target based upon what side it is on.",description_zh:"一个值，该值根据内容所在的一侧将内容从目标偏移。",required:!1},opacity:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the overlay opacity.",description_zh:"设置叠加不透明度。",required:!1},"open-delay":{default:"undefined",value:"",type:"string | number",version:"",description:"Milliseconds to wait before opening component. Only applies to hover and focus events.",description_zh:"打开组件之前等待的毫秒数。仅适用于悬停和焦点事件。",required:!1},"open-on-click":{default:"undefined",value:"",type:"boolean",version:"",description:"Activate the component when the activator is clicked.",description_zh:"单击激活器时激活组件。",required:!1},"open-on-focus":{default:"undefined",value:"",type:"boolean",version:"",description:"Activate the component when the activator is focused.",description_zh:"当激活器聚焦时激活组件。",required:!1},"open-on-hover":{default:"false",value:"",type:"boolean",version:"",description:"Activate the component when the activator is hovered.",description_zh:"将鼠标悬停在激活器上时激活组件。",required:!1},origin:{default:"'auto'",value:"",type:"Anchor / auto / overlap",version:"",description:"Sets the transition origin on the element. You can find more information on the MDN documentation for transition origin.",description_zh:"设置元素上的过渡原点。您可以在 transition origin 的 MDN 文档上找到更多信息。",required:!1},position:{default:"undefined",value:"",type:"static / relative / fixed / absolute / sticky",version:"",description:"Sets the position for the component.",description_zh:"设置零部件的位置。",required:!1},rounded:{default:"undefined",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. Find more information on available border radius classes on the Border Radius page.",description_zh:"指定应用于组件的 border-radius。这可以是 0、xs、sm、true、lg、xl、pill、circle 和 shaped。在 Border Radius 页面上查找有关可用边界半径类的更多信息。",required:!1},target:{default:"undefined",value:"",type:"  | Element  | 'parent'  | 'cursor'  | (string & {})  | ComponentPublicInstance  | [number, number]",version:"",description:"For locationStrategy=“connected”, specify an element or array of x,y coordinates that the overlay should position itself relative to. This will be the activator element by default.",description_zh:"对于 locationStrategy=“connected”，指定叠加层应相对于其定位自身的 x，y 坐标的元素或数组。默认情况下，这将是 activator 元素。",required:!1},text:{default:"undefined",value:"",type:"string",version:"",description:"Specify content text for the component.",description_zh:"指定组件的内容文本。",required:!1},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},tile:{default:"false",value:"",type:"boolean",version:"",description:"Removes any applied border-radius from the component.",description_zh:"从组件中删除任何应用的 border-radius。",required:!1},timeout:{default:"5000",value:"",type:"string | number",version:"",description:"Time (in milliseconds) to wait until snackbar is automatically hidden. Use -1 to keep open indefinitely (0 in version < 2.3 ). It is recommended for this number to be between 4000 and 10000. Changes to this property will reset the timeout.",description_zh:"等待信息提示控件自动隐藏之前的时间 （毫秒）。使用 -1 可无限期保持打开状态（在版本 < 2.3 中为 0 ）。建议此数字介于 4000 和 10000 之间。更改此属性将重置超时。",required:!1},timer:{default:"false",value:"",type:"string | boolean",version:"",description:"Display a progress bar that counts down until the snackbar closes. Pass a string to set a custom color, otherwise uses info.",description_zh:"显示一个进度条，该进度条会倒计时，直到信息提示控件关闭。传递一个字符串来设置自定义颜色，否则使用 info。",required:!1},transition:{default:"'v-snackbar-transition'",value:"",type:"string | boolean | (TransitionProps & { component: Component })",version:"",description:"Sets the component transition. Can be one of the built in or custom transition.",description_zh:"设置零部件过渡。可以是内置或自定义过渡之一。",required:!1},variant:{default:"'elevated'",value:"",type:"text / flat / elevated / tonal / outlined / plain",version:"",description:"Applies a distinct style to the component.",description_zh:"将不同的样式应用于组件。",required:!1},vertical:{default:"false",value:"",type:"boolean",version:"",description:"Stacks snackbar content on top of the actions (button).",description_zh:"将信息提示控件内容堆叠在操作（按钮）的顶部。",required:!1},width:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the width for the component.",description_zh:"设置组件的宽度。",required:!1},"z-index":{default:"2000",value:"",type:"string | number",version:"",description:"The z-index used for the component.",description_zh:"用于组件的 z-index。",required:!1}},link:"https://vuetifyjs.com/en/api/v-snackbar-queue/",link_zh:"https://vuetifyjs.com/en/api/v-snackbar-queue/",typeDetail:{},events:[{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件的模型更改时发出的事件。",params:"[  (    | string    | {        text: string        multiLine: boolean        timer: string | boolean        timeout: string | number        vertical: boolean        location: Anchor        position: 'static' | 'relative' | 'fixed' | 'absolute' | 'sticky'        absolute: boolean        rounded: string | number | boolean        tile: boolean        color: string        variant: 'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'        theme: string        closeOnBack: boolean        contained: boolean        contentClass: any        contentProps: any        disabled: boolean        opacity: string | number        zIndex: string | number        target:          | Element          | 'parent'          | 'cursor'          | (string & {})          | ComponentPublicInstance          | [number, number]        closeOnContentClick: boolean        style: StyleValue        class: any        height: string | number        maxHeight: string | number        maxWidth: string | number        minHeight: string | number        minWidth: string | number        width: string | number        eager: boolean        locationStrategy: 'static' | 'connected' | LocationStrategyFn        origin: Anchor | 'auto' | 'overlap'        offset: string | number | number[]        transition:          | string          | boolean          | (TransitionProps & { component: Component })        attach: string | boolean | Element        'v-slots': {          activator:            | false            | ((arg: {                isActive: boolean                props: Record<string, any>              }) => VNodeChild)          default: false | (() => VNodeChild)          actions: false | ((arg: { isActive: Ref<boolean> }) => VNodeChild)          text: false | (() => VNodeChild)        }        'v-slot:default': false | (() => VNodeChild)        'v-slot:activator':          | false          | ((arg: {              isActive: boolean              props: Record<string, any>            }) => VNodeChild)        key: string | number | symbol        ref: VNodeRef        ref_for: boolean        ref_key: string        onVnodeBeforeMount: VNodeMountHook | VNodeMountHook[]        onVnodeMounted: VNodeMountHook | VNodeMountHook[]        onVnodeBeforeUpdate: VNodeUpdateHook | VNodeUpdateHook[]        onVnodeUpdated: VNodeUpdateHook | VNodeUpdateHook[]        onVnodeBeforeUnmount: VNodeMountHook | VNodeMountHook[]        onVnodeUnmounted: VNodeMountHook | VNodeMountHook[]        'v-slot:actions':          | false          | ((arg: { isActive: Ref<boolean> }) => VNodeChild)        'v-slot:text': false | (() => VNodeChild)      }  )[],]",value:""}],methods:[],slots:[{name:"actions",description:"Used to bind styles to v-btn to match MD2 specification.",description_zh:"用于将样式绑定到 v-btn 以匹配 MD2 规范。",params:"{\n  item:\n    | string\n    | {\n        text: string\n        multiLine: boolean\n        timer: string | boolean\n        timeout: string | number\n        vertical: boolean\n        location: Anchor\n        position: 'static' | 'relative' | 'fixed' | 'absolute' | 'sticky'\n        absolute: boolean\n        rounded: string | number | boolean\n        tile: boolean\n        color: string\n        variant: 'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n        theme: string\n        closeOnBack: boolean\n        contained: boolean\n        contentClass: any\n        contentProps: any\n        disabled: boolean\n        opacity: string | number\n        zIndex: string | number\n        target:\n          | Element\n          | 'parent'\n          | 'cursor'\n          | (string & {})\n          | ComponentPublicInstance\n          | [number, number]\n        closeOnContentClick: boolean\n        style: StyleValue\n        class: any\n        height: string | number\n        maxHeight: string | number\n        maxWidth: string | number\n        minHeight: string | number\n        minWidth: string | number\n        width: string | number\n        eager: boolean\n        locationStrategy: 'static' | 'connected' | LocationStrategyFn\n        origin: Anchor | 'auto' | 'overlap'\n        offset: string | number | number[]\n        transition:\n          | string\n          | boolean\n          | (TransitionProps & { component: Component })\n        attach: string | boolean | Element\n        'v-slots': {\n          activator:\n            | false\n            | ((arg: {\n                isActive: boolean\n                props: Record<string, any>\n              }) => VNodeChild)\n          default: false | (() => VNodeChild)\n          actions: false | ((arg: { isActive: Ref<boolean> }) => VNodeChild)\n          text: false | (() => VNodeChild)\n        }\n        'v-slot:default': false | (() => VNodeChild)\n        'v-slot:activator':\n          | false\n          | ((arg: {\n              isActive: boolean\n              props: Record<string, any>\n            }) => VNodeChild)\n        key: string | number | symbol\n        ref: VNodeRef\n        ref_for: boolean\n        ref_key: string\n        onVnodeBeforeMount: VNodeMountHook | VNodeMountHook[]\n        onVnodeMounted: VNodeMountHook | VNodeMountHook[]\n        onVnodeBeforeUpdate: VNodeUpdateHook | VNodeUpdateHook[]\n        onVnodeUpdated: VNodeUpdateHook | VNodeUpdateHook[]\n        onVnodeBeforeUnmount: VNodeMountHook | VNodeMountHook[]\n        onVnodeUnmounted: VNodeMountHook | VNodeMountHook[]\n        'v-slot:actions':\n          | false\n          | ((arg: { isActive: Ref<boolean> }) => VNodeChild)\n        'v-slot:text': false | (() => VNodeChild)\n      }\n  props: { onClick: () => void }\n}"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{\n  item:\n    | string\n    | {\n        text: string\n        multiLine: boolean\n        timer: string | boolean\n        timeout: string | number\n        vertical: boolean\n        location: Anchor\n        position: 'static' | 'relative' | 'fixed' | 'absolute' | 'sticky'\n        absolute: boolean\n        rounded: string | number | boolean\n        tile: boolean\n        color: string\n        variant: 'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n        theme: string\n        closeOnBack: boolean\n        contained: boolean\n        contentClass: any\n        contentProps: any\n        disabled: boolean\n        opacity: string | number\n        zIndex: string | number\n        target:\n          | Element\n          | 'parent'\n          | 'cursor'\n          | (string & {})\n          | ComponentPublicInstance\n          | [number, number]\n        closeOnContentClick: boolean\n        style: StyleValue\n        class: any\n        height: string | number\n        maxHeight: string | number\n        maxWidth: string | number\n        minHeight: string | number\n        minWidth: string | number\n        width: string | number\n        eager: boolean\n        locationStrategy: 'static' | 'connected' | LocationStrategyFn\n        origin: Anchor | 'auto' | 'overlap'\n        offset: string | number | number[]\n        transition:\n          | string\n          | boolean\n          | (TransitionProps & { component: Component })\n        attach: string | boolean | Element\n        'v-slots': {\n          activator:\n            | false\n            | ((arg: {\n                isActive: boolean\n                props: Record<string, any>\n              }) => VNodeChild)\n          default: false | (() => VNodeChild)\n          actions: false | ((arg: { isActive: Ref<boolean> }) => VNodeChild)\n          text: false | (() => VNodeChild)\n        }\n        'v-slot:default': false | (() => VNodeChild)\n        'v-slot:activator':\n          | false\n          | ((arg: {\n              isActive: boolean\n              props: Record<string, any>\n            }) => VNodeChild)\n        key: string | number | symbol\n        ref: VNodeRef\n        ref_for: boolean\n        ref_key: string\n        onVnodeBeforeMount: VNodeMountHook | VNodeMountHook[]\n        onVnodeMounted: VNodeMountHook | VNodeMountHook[]\n        onVnodeBeforeUpdate: VNodeUpdateHook | VNodeUpdateHook[]\n        onVnodeUpdated: VNodeUpdateHook | VNodeUpdateHook[]\n        onVnodeBeforeUnmount: VNodeMountHook | VNodeMountHook[]\n        onVnodeUnmounted: VNodeMountHook | VNodeMountHook[]\n        'v-slot:actions':\n          | false\n          | ((arg: { isActive: Ref<boolean> }) => VNodeChild)\n        'v-slot:text': false | (() => VNodeChild)\n      }\n}"},{name:"text",description:"Slot for the component’s text content.",description_zh:"组件文本内容的插槽。",params:"{\n  item:\n    | string\n    | {\n        text: string\n        multiLine: boolean\n        timer: string | boolean\n        timeout: string | number\n        vertical: boolean\n        location: Anchor\n        position: 'static' | 'relative' | 'fixed' | 'absolute' | 'sticky'\n        absolute: boolean\n        rounded: string | number | boolean\n        tile: boolean\n        color: string\n        variant: 'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n        theme: string\n        closeOnBack: boolean\n        contained: boolean\n        contentClass: any\n        contentProps: any\n        disabled: boolean\n        opacity: string | number\n        zIndex: string | number\n        target:\n          | Element\n          | 'parent'\n          | 'cursor'\n          | (string & {})\n          | ComponentPublicInstance\n          | [number, number]\n        closeOnContentClick: boolean\n        style: StyleValue\n        class: any\n        height: string | number\n        maxHeight: string | number\n        maxWidth: string | number\n        minHeight: string | number\n        minWidth: string | number\n        width: string | number\n        eager: boolean\n        locationStrategy: 'static' | 'connected' | LocationStrategyFn\n        origin: Anchor | 'auto' | 'overlap'\n        offset: string | number | number[]\n        transition:\n          | string\n          | boolean\n          | (TransitionProps & { component: Component })\n        attach: string | boolean | Element\n        'v-slots': {\n          activator:\n            | false\n            | ((arg: {\n                isActive: boolean\n                props: Record<string, any>\n              }) => VNodeChild)\n          default: false | (() => VNodeChild)\n          actions: false | ((arg: { isActive: Ref<boolean> }) => VNodeChild)\n          text: false | (() => VNodeChild)\n        }\n        'v-slot:default': false | (() => VNodeChild)\n        'v-slot:activator':\n          | false\n          | ((arg: {\n              isActive: boolean\n              props: Record<string, any>\n            }) => VNodeChild)\n        key: string | number | symbol\n        ref: VNodeRef\n        ref_for: boolean\n        ref_key: string\n        onVnodeBeforeMount: VNodeMountHook | VNodeMountHook[]\n        onVnodeMounted: VNodeMountHook | VNodeMountHook[]\n        onVnodeBeforeUpdate: VNodeUpdateHook | VNodeUpdateHook[]\n        onVnodeUpdated: VNodeUpdateHook | VNodeUpdateHook[]\n        onVnodeBeforeUnmount: VNodeMountHook | VNodeMountHook[]\n        onVnodeUnmounted: VNodeMountHook | VNodeMountHook[]\n        'v-slot:actions':\n          | false\n          | ((arg: { isActive: Ref<boolean> }) => VNodeChild)\n        'v-slot:text': false | (() => VNodeChild)\n      }\n}"}],exposed:[]},ai={name:"VSpacer",props:{tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-spacer/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-spacer/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},ri={name:"VSparkline",props:{"auto-draw":{default:"false",value:"",type:"boolean",description:"Trace the length of the line when first rendered.",description_zh:"在首次呈现时跟踪线条的长度。"},"auto-draw-duration":{default:"undefined",value:"",type:"string | number",description:"Amount of time (in ms) to run the trace animation.",description_zh:"运行跟踪动画的时间量（以毫秒为单位）。"},"auto-draw-easing":{default:"ease",value:"",type:"string",description:"The easing function to use for the trace animation.",description_zh:"用于跟踪动画的缓动函数。"},"auto-line-width":{default:"false",value:"",type:"boolean",description:"Automatically expand bars to use space efficiently.",description_zh:"自动扩展条形以有效利用空间。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},fill:{default:"false",value:"",type:"boolean",description:"Using the fill attribute allows you to better customize the appearance of your mini-charts.",description_zh:"使用 fill 属性可以让您更好地自定义您的迷你图表的外观。",required:!0},gradient:{default:"[]",value:"",type:"string[]",description:"An array of colors to use as a linear-gradient.",description_zh:"用作线性渐变的颜色数组。"},"gradient-direction":{default:"top",value:"",type:"top / bottom / left / right",description:"The direction the gradient should run.",description_zh:"渐变应运行的方向。"},height:{default:"75",value:"",type:"string | number",description:"Height of the SVG trendline or bars.",description_zh:"SVG 趋势线或柱线的高度。"},id:{default:"undefined",value:"",type:"string",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）"},"item-value":{default:"value",value:"",type:"string",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）"},labels:{default:"[]",value:"",type:"(number | { value: number })[]",description:"An array of string labels that correspond to the same index as its data counterpart.",description_zh:"字符串标签数组，与与其对应数据对应项对应的索引对应的索引相对应。"},"label-size":{default:"7",value:"",type:"string | number",description:"The label font size.",description_zh:"标签字体大小。"},"line-width":{default:"4",value:"",type:"string | number",description:"The thickness of the line, in px.",description_zh:"线条的粗细，以 px 为单位。"},max:{default:"undefined",value:"",type:"string | number",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）"},min:{default:"undefined",value:"",type:"string | number",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）"},"v-model":{default:"[]",value:"",type:"(number | { value: number })[]",description:"The value of the component v-mode. If the component supports variants, the default is an empty array.",description_zh:"组件 v-mode 的值。如果组件支持多属性，默认为空数组。"},padding:{default:"8",value:"",type:"string | number",description:"Low smooth or high line-width values may result in cropping, increase padding to compensate.",description_zh:"低平滑或高线宽值可能会导致裁剪，增加填充以补偿。"},"show-labels":{default:"false",value:"",type:"boolean",description:"Show labels below each data point.",description_zh:"在每个数据点下方显示标签。"},smooth:{default:"false",value:"",type:"boolean",description:"Number of px to use as a corner radius. true defaults to 8, false is 0.",description_zh:"用作拐角半径的 px 数。true 默认为 8，false 为 0。"},type:{default:"trend",value:"",type:"trend / bar",description:"Choose between a trendline or bars.",description_zh:"在趋势线或柱线之间进行选择。"},width:{default:"300",value:"",type:"string | number",description:"Width of the SVG trendline or bars.",description_zh:"SVG 趋势线或条形图的宽度。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-sparkline/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-sparkline/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:""},{name:"label",description:"The default slot of the v-label or v-field-label component.",description_zh:"v-label 或 v-field-label 组件的默认插槽。",params:"{ index: number; value: string }"}]},si={name:"VSpeedDial",props:{activator:{default:"undefined",value:"",type:"(string & {}) | Element | 'parent' | ComponentPublicInstance",description:"Explicitly sets the overlay’s activator.",description_zh:"显式设置叠加的激活器。"},"activator-props":{default:"{}",value:"",type:"unknown",description:"Apply custom properties to the activator.",description_zh:"将自定义属性应用于激活器。"},attach:{default:"false",value:"",type:"string | boolean | Element",description:"Specifies which DOM element the overlay content should teleport to. Can be a direct element reference, querySelector string, or true to disable teleporting. Uses body by default. Generally not recommended except as a last resort: the default positioning algorithm should handle most scenarios better than is possible without teleporting, and you may have unexpected behavior if the menu ends up as child of its activator.",description_zh:"指定覆盖内容应传送到哪个 DOM 元素。可以是直接元素引用、querySelector 字符串或 true 以禁用传送。默认使用 body。除非万不得已，否则通常不建议这样做：默认定位算法应该比没有传送时更好地处理大多数场景，如果菜单最终成为其激活器的子项，您可能会出现意外行为。"},"close-delay":{default:"100",value:"",type:"string | number",description:"Milliseconds to wait before closing component. Only works with the open-on-hover prop.",description_zh:"在关闭组件之前等待的毫秒数。仅适用于悬停时打开道具。"},"close-on-back":{default:"true",value:"",type:"boolean",description:"Closes the overlay content when the browser’s back button is pressed or $router.back() is called, cancelling the original navigation. persistent overlays will cancel navigation and animate as if they were clicked outside instead of closing.",description_zh:"当按下浏览器的后退按钮或调用 $router.back（） 时关闭叠加内容，从而取消原始导航。持久性叠加将取消导航并制作动画，就好像它们被单击到外部而不是关闭一样。"},"close-on-content-click":{default:"true",value:"",type:"boolean",description:"Closes component when you click on its content.",description_zh:"单击组件内容时关闭组件。"},contained:{default:"false",value:"",type:"boolean",description:"Limits the size of the component and scrim to its offset parent. Implies absolute and attach. (Note: The parent element must have position: relative.).",description_zh:"将元件和稀松布的大小限制为其偏移父级。表示绝对和附加。（注意：父元素必须具有 position： relative.）。"},"content-class":{default:"undefined",value:"",type:"any",description:"Apply a custom class to the detached element. This implementation is useful since the contents of this element will be appended to the beginning of the v-app component (unless you set the attach attribute), and the class attribute will not pass the CSS class directly to the component.",description_zh:"将自定义的class应用于被分离的此元素。由于此元素的内容将被附加到v-app组件开头(除非你设置了attach属性)，并且class属性不会将css类直接传递给组件，所以这个实行非常有用。"},"content-props":{default:"undefined",value:"",type:"any",description:"Apply custom properties to the content.",description_zh:"将自定义属性应用于内容。"},disabled:{default:"false",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},eager:{default:"false",value:"",type:"boolean",description:"Forces the component’s content to render when it mounts. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO.",description_zh:"强制组件的内容在装载时呈现。如果您有不会在 DOM 中呈现的内容，并且要为 SEO 抓取内容，这将很有用。"},height:{default:"undefined",value:"",type:"string | number",description:"Sets the height of the component.",description_zh:"设定组件的高度。"},id:{default:"undefined",value:"",type:"string",description:"The unique identifier of the component.",description_zh:"组件的唯一标识符。"},location:{default:"top center",value:"",type:"Anchor",description:"Specifies the anchor point for positioning the component, using directional cues to align it either horizontally, vertically, or both…",description_zh:"指定用于定位元件的锚点，使用方向提示将其水平、垂直或两者对齐...",required:!0},"location-strategy":{default:"connected",value:"",type:"static / connected / LocationStrategyFn",description:"A function used to specifies how the component should position relative to its activator.",description_zh:"一个函数，用于指定组件相对于其激活器的位置。"},"max-height":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum height of the component.",description_zh:"设定组件的最大高度。"},"max-width":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum width of the component.",description_zh:"设定组件的最大宽度。"},"min-height":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum height of the component.",description_zh:"设定组件的最小高度。"},"min-width":{default:"0",value:"",type:"string | number",description:"Sets the minimum width for the component. Use auto to use the activator width.",description_zh:"设置组件的最小宽度。使用 auto 使用激活器宽度。"},"v-model":{default:"false",value:"",type:"boolean",description:"The value of the component v-mode. If the component supports variants, the default is an empty array.",description_zh:"组件 v-mode 的值。如果组件支持多属性，默认为空数组。"},"no-click-animation":{default:"false",value:"",type:"boolean",description:"Disables the bounce effect when clicking outside of the content element when using the persistent prop.",description_zh:"禁用使用持久性道具时在内容元素外部单击时的弹跳效果。"},offset:{default:"8",value:"",type:"string | number | number[]",description:"A single value that offsets content away from the target based upon what side it is on.",description_zh:"一个值，该值根据内容所在的一侧使内容偏离目标。"},opacity:{default:"undefined",value:"",type:"string | number",description:"Sets the transparency of the mask layer.",description_zh:"设置遮罩层的透明度。"},"open-delay":{default:"0",value:"",type:"string | number",description:"Milliseconds to wait before opening component. Only works with the open-on-hover prop.",description_zh:"在打开组件之前等待的毫秒数。仅适用于悬停时打开道具。"},"open-on-click":{default:"undefined",value:"",type:"boolean",description:"Activate the component when the activator is clicked.",description_zh:"单击激活器时激活组件。"},"open-on-focus":{default:"undefined",value:"",type:"boolean",description:"Activate the component when the activator is focused.",description_zh:"当激活器聚焦时激活组件。"},"open-on-hover":{default:"false",value:"",type:"boolean",description:"Turn on speed dials while hovering",description_zh:"悬停时打开快速拨号"},origin:{default:"auto",value:"",type:"Anchor / auto / overlap",description:"设置元素上的动画原点。 您可以在 MDN 文档上浏览更多 for transition origin",description_zh:"设置元素上的动画原点。 您可以在 MDN 文档上浏览更多 for transition origin"},persistent:{default:"false",value:"",type:"boolean",description:"Clicking outside of the element or pressing esc key will not deactivate it.",description_zh:"单击元素外部或按 esc 键不会将其停用。"},scrim:{default:"false",value:"",type:"string | boolean",description:"Accepts true/false to enable background, and string to define color.",description_zh:"接受 true/false 以启用背景，接受字符串以定义颜色。"},"scroll-strategy":{default:"reposition",value:"",type:"none / close / block / reposition / ScrollStrategyFn",description:"Strategy used when the component is activate and user scrolls.",description_zh:"激活组件和用户滚动时使用的策略。"},target:{default:"undefined",value:"",type:"  | (string & {})  | Element  | 'parent'  | 'cursor'  | ComponentPublicInstance  | [number, number]",description:"For locationStrategy=“connected”, specify an element or array of x,y coordinates that the overlay should position itself relative to. This will be the activator element by default.",description_zh:"对于 locationStrategy=“connected”，指定叠加应相对于其自身定位的 x，y 坐标元素或数组。默认情况下，这将是激活器元素。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},transition:{default:"scale-transition",value:"",type:"  | { component: Component }  | string  | boolean  | (TransitionProps & { component: Component })",description:"Sets the component transition. Can be one of the built in or custom transition.",description_zh:"设置组件转换。可以是内置或自定义过渡之一。",required:!0},width:{default:"undefined",value:"",type:"string | number",description:"Sets the width of the component.",description_zh:"设定组件的宽度。"},"z-index":{default:"2000",value:"",type:"string | number",description:"The z-index used for the component.",description_zh:"用于组件的 z 索引。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-speed-dial/#props",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-speed-dial/#props",typeDetail:{},events:[{name:"update:modelValue",description:"An event that is raised when a component's model-value changes.",description_zh:"当组件的 model-value 更改时引发的事件。",params:"[boolean]",value:""}],methods:[],slots:[{name:"activator",description:"When used, will activate the component when clicked (or hover for specific components). This manually stops the event propagation. Without this slot, if you open the component through its model, you will need to manually stop the event propagation.",description_zh:"使用时，将在单击时激活组件（或将鼠标悬停在特定组件上）。这将手动停止事件传播。如果没有此插槽，如果通过其模型打开组件，则需要手动停止事件传播。",params:"{\n  isActive: boolean\n  props: Record<string, any>\n  targetRef: TemplateRef\n}"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{ isActive: Ref<boolean> }"}]},fe={name:"VStepper",props:{"alt-labels":{default:"false",value:"",type:"boolean",version:"",description:"Places the labels beneath the step.",description_zh:"将标签放在步骤下方。",required:!1},"bg-color":{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control’s background. Used on components that also support the color prop. - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件的背景。用于也支持 color 属性的组件。- 支持实用工具颜色（例如 Success 或 Purple）或 CSS 颜色（#033 或 RGBA（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},border:{default:"false",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be xs, sm, md, lg, xl.",description_zh:"指定应用于组件的 border-radius。这可以是 xs、sm、md、lg、xl。",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},"complete-icon":{default:"undefined",value:"",type:"string",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},disabled:{default:"false",value:"",type:"boolean",version:"",description:"Puts all children components into a disabled state.",description_zh:"将所有子组件置于禁用状态。",required:!1},editable:{default:"false",value:"",type:"boolean",version:"",description:"Marks step as editable.",description_zh:"将步骤标记为可编辑。",required:!1},"edit-icon":{default:"undefined",value:"",type:"string",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},elevation:{default:"undefined",value:"",type:"string | number",version:"",description:"Designates an elevation applied to the component between 0 and 24. You can find more information on the elevation page.",description_zh:"指定应用于组件的 0 到 24 之间的高程。您可以在海拔页面上找到更多信息。",required:!1},"error-icon":{default:"undefined",value:"",type:"string",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},flat:{default:"false",value:"",type:"boolean",version:"",description:"Removes the stepper’s elevation.",description_zh:"删除步进器的高程。",required:!1},height:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the height for the component.",description_zh:"设置组件的高度。",required:!1},"hide-actions":{default:"false",value:"",type:"boolean",version:"",description:"Hide actions bar (prev and next buttons).",description_zh:"隐藏操作栏（“上一个”和“下一个”按钮）。",required:!1},":items":{default:"[]",value:"",type:"(string | Record<string, any>)[]",version:"",description:"An array of strings or objects used for automatically generating children components.",description_zh:"用于自动生成子组件的字符串或对象的数组。",required:!0},"item-title":{default:"'title'",value:"",type:"string",version:"",description:"Property on supplied items that contains its title.",description_zh:"包含其标题的所提供项上的属性。",required:!1},"item-value":{default:"'value'",value:"",type:"string",version:"",description:"Property on supplied items that contains its value.",description_zh:"包含其值的 supplied items 上的属性。",required:!1},location:{default:"undefined",value:"",type:"Anchor",version:"",description:"Specifies the component’s location. Can combine by using a space separated string.",description_zh:"指定组件的位置。可以使用空格分隔的字符串进行组合。",required:!1},mandatory:{default:"'force'",value:"",type:"boolean / force",version:"",description:"Forces at least one item to always be selected (if available).",description_zh:"强制始终选择至少一个项目（如果可用）。",required:!1},":max":{default:"undefined",value:"",type:"number",version:"",description:"Sets a maximum number of selections that can be made.",description_zh:"设置可以进行的最大选择数。",required:!1},"max-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum height for the component.",description_zh:"设置组件的最大高度。",required:!1},"max-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。",required:!1},"min-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum height for the component.",description_zh:"设置组件的最小高度。",required:!1},"min-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum width for the component.",description_zh:"设置组件的最小宽度。",required:!1},mobile:{default:"false",value:"",type:"boolean",version:"",description:"Forces the stepper into a mobile state, removing labels from stepper items.",description_zh:"强制步进器进入移动状态，从步进器项中删除标签。",required:!1},"mobile-breakpoint":{default:"undefined",value:"",type:"number / xs / sm / md / lg / xl / xxl",version:"",description:"Overrides the display configuration default screen size that the component should be considered in mobile.",description_zh:"覆盖组件在移动设备中应考虑的显示配置默认屏幕大小。",required:!1},"v-model":{default:"undefined",value:"",type:"any",version:"",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v-model 值。如果 component 支持 multiple prop，则默认为空数组。",required:!1},multiple:{default:"false",value:"",type:"boolean",version:"",description:"Allows one to select multiple items.",description_zh:"允许选择多个项目。",required:!1},"next-text":{default:"'$vuetify.stepper.next'",value:"",type:"string",version:"",description:"The text used for the Next button.",description_zh:"用于 Next （下一步） 按钮的文本。",required:!1},"non-linear":{default:"false",value:"",type:"boolean",version:"",description:"Allow user to jump to any step.",description_zh:"允许用户跳转到任何步骤。",required:!1},position:{default:"undefined",value:"",type:"static / relative / fixed / absolute / sticky",version:"",description:"Sets the position for the component.",description_zh:"设置零部件的位置。",required:!1},"prev-text":{default:"'$vuetify.stepper.prev'",value:"",type:"string",version:"",description:"The text used for the Prev button.",description_zh:"用于 Prev 按钮的文本。",required:!1},rounded:{default:"undefined",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. Find more information on available border radius classes on the Border Radius page.",description_zh:"指定应用于组件的 border-radius。这可以是 0、xs、sm、true、lg、xl、pill、circle 和 shaped。在 Border Radius 页面上查找有关可用边界半径类的更多信息。",required:!1},"selected-class":{default:"'v-stepper-item--selected'",value:"",type:"string",version:"",description:"Configure the active CSS class applied when an item is selected.",description_zh:"配置在选择项目时应用的活动 CSS 类。",required:!1},tag:{default:"'div'",value:"",type:"string",version:"",description:"Specify a custom tag used on the root element.",description_zh:"指定根元素上使用的自定义标记。",required:!1},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},tile:{default:"false",value:"",type:"boolean",version:"",description:"Removes any applied border-radius from the component.",description_zh:"从组件中删除任何应用的 border-radius。",required:!1},width:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the width for the component.",description_zh:"设置组件的宽度。",required:!1}},link:"https://vuetifyjs.com/en/api/v-stepper/",link_zh:"https://vuetifyjs.com/en/api/v-stepper/",typeDetail:{},events:[{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件的模型更改时发出的事件。",params:"[unknown]",value:""}],methods:[],slots:[{name:"[`header-item.${string}`]",description:"Slot for customizing header items when using the items prop.",description_zh:"使用 items 属性时用于自定义标题项的插槽。",params:"{\n  canEdit: boolean\n  hasError: boolean\n  hasCompleted: boolean\n  title: string | number\n  subtitle: string | number\n  step: any\n}"},{name:"[`item.${string}`]",description:"Slot for customizing the content for each step.",description_zh:"用于自定义每个步骤内容的插槽。",params:"string | Record<string, any>"},{name:"actions",description:"Slot for customizing v-stepper-actions.",description_zh:"用于自定义 v-stepper-actions 的插槽。",params:"{ prev: () => void; next: () => void }"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{ prev: () => void; next: () => void }"},{name:"header",description:"Slot for customizing the header.",description_zh:"用于自定义标头的插槽。",params:"string | Record<string, any>"},{name:"header-item",description:"Slot for customizing all header items.",description_zh:"用于自定义所有标题项的插槽。",params:"{\n  canEdit: boolean\n  hasError: boolean\n  hasCompleted: boolean\n  title: string | number\n  subtitle: string | number\n  step: any\n}"},{name:"icon",description:"Slot for customizing all stepper item icons.",description_zh:"用于自定义所有步进项图标的插槽。",params:"{\n  canEdit: boolean\n  hasError: boolean\n  hasCompleted: boolean\n  title: string | number\n  subtitle: string | number\n  step: any\n}"},{name:"item",description:"Define a custom item appearance.",description_zh:"定义自定义项外观。",params:"string | Record<string, any>"},{name:"next",description:"Slot for customizing the next step functionailty",description_zh:"用于自定义下一步功能的插槽",params:""},{name:"prev",description:"Slot for customizing the prev step functionality",description_zh:"用于自定义上一个步骤功能的插槽",params:""},{name:"subtitle",description:"Slot for the component’s subtitle content.",description_zh:"组件字幕内容的插槽。",params:"{\n  canEdit: boolean\n  hasError: boolean\n  hasCompleted: boolean\n  title: string | number\n  subtitle: string | number\n  step: any\n}"},{name:"title",description:"Slot for the component’s title content.",description_zh:"组件标题内容的插槽。",params:"{\n  canEdit: boolean\n  hasError: boolean\n  hasCompleted: boolean\n  title: string | number\n  subtitle: string | number\n  step: any\n}"}],exposed:[{name:"next",description:"Move to the next step.",description_zh:"Move to the next step.",detail:"() => void"},{name:"prev",description:"Move to the prev step.",description_zh:"Move to the prev step.",detail:"() => void"}],suggestions:["v-stepper-actions","v-stepper-header","v-stepper-item","v-stepper-window","v-stepper-window-item"]},ve={name:"VStepperActions",props:{color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},disabled:{default:"false",value:"",type:"true / false / prev / next",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},"next-text":{default:"$vuetify.stepper.next",value:"",type:"string",description:"The text used for the Next button.",description_zh:"用于“下一步”按钮的文本。"},"prev-text":{default:"$vuetify.stepper.prev",value:"",type:"string",description:"The text used for the Prev button.",description_zh:"用于“上一步”按钮的文本。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-stepper-actions/#props",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-stepper-actions/#props",typeDetail:{},events:[{name:"click:next",description:"Event emitted when clicking the next button.",description_zh:"单击“下一步”按钮时发出的事件。",params:"[]",value:""},{name:"click:prev",description:"Event emitted when clicking the prev button.",description_zh:"单击上一个按钮时发出的事件。",params:"[]",value:""}],methods:[],slots:[{name:"next",description:"Slot for customizing the next step functionailty",description_zh:"用于自定义下一步功能的插槽",params:"{ props: { onClick: () => void } }"},{name:"prev",description:"Slot for customizing the prev step functionality",description_zh:"用于自定义上一个步骤功能的插槽",params:"{ props: { onClick: () => void } }"}]},be={name:"VStepperHeader",props:{tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-stepper-header/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-stepper-header/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},ge={name:"VStepperItem",props:{color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},complete:{default:"false",value:"",type:"boolean",description:"Marks step as complete.",description_zh:"将步骤标记为完成。"},"complete-icon":{default:"$complete",value:"",type:"string",description:"Icon to display when step is marked as completed.",description_zh:"步骤标记为完成时显示的图标。"},disabled:{default:"false",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},editable:{default:"false",value:"",type:"boolean",description:"Marks step as editable.",description_zh:"将步骤标记为可编辑。"},"edit-icon":{default:"$edit",value:"",type:"string",description:"Icon to display when step is editable.",description_zh:"步骤可编辑时显示的图标。"},error:{default:"false",value:"",type:"boolean",description:"Puts the stepper item in a manual error state.",description_zh:"将步进程序项置于手动错误状态。"},"error-icon":{default:"$error",value:"",type:"string",description:"Icon to display when step has an error.",description_zh:"步骤出错时显示的图标。"},icon:{default:"undefined",value:"",type:"string",description:"Assign a v-icon icon to the button.",description_zh:"为按钮指定一个 v-icon 图标。"},ripple:{default:"true",value:"",type:"boolean | { class: string }",description:"Apply the v-ripple directive.",description_zh:"应用 v-ripple 指令。"},rules:{default:"[]",value:"",type:"ValidationRule[]",description:"Accepts a mixed array of types function, boolean and string. Functions pass an input value as an argument and must return either true / false or a string containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) false or is a string.",description_zh:"接受 function、boolean 和 string 类型的混合数组。函数将输入值作为参数传递，并且必须返回 true / false 或包含错误消息的字符串。如果函数返回（或数组中的任何值包含）false 或字符串，则输入字段将进入错误状态。"},"selected-class":{default:"undefined",value:"",type:"string",description:"Configure the name of the CSS class that will be applied when the selected item is selected.",description_zh:"配置被选中项目时应用的 CSS 类名。"},subtitle:{default:"undefined",value:"",type:"string",description:"Specify a subtitle text for the component.",description_zh:"指定组件的副标题文本。"},title:{default:"undefined",value:"",type:"string",description:"Specify a title text for the component.",description_zh:"指定组件的标题文本。"},value:{default:"undefined",value:"",type:"any",description:"The value used when selecting a component in a group. If not provided, a unique ID is used.",description_zh:"在组中选择组件时使用的值。如果没有提供，则使用唯一 ID。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-stepper-item/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-stepper-item/#links",typeDetail:{},events:[{name:"group:selected",description:"Event that is emitted when an item is selected within a group.",description_zh:"在组中选择项目时发出的事件。",params:"[{ value: boolean }]",value:""}],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{\n  canEdit: boolean\n  hasError: boolean\n  hasCompleted: boolean\n  title: string | number\n  subtitle: string | number\n  step: any\n}"},{name:"icon",description:"Slot for customizing all stepper item icons.",description_zh:"用于自定义所有步进项图标的插槽。",params:"{\n  canEdit: boolean\n  hasError: boolean\n  hasCompleted: boolean\n  title: string | number\n  subtitle: string | number\n  step: any\n}"},{name:"subtitle",description:"Slot for the component’s subtitle content.",description_zh:"组件字幕内容的插槽。",params:"{\n  canEdit: boolean\n  hasError: boolean\n  hasCompleted: boolean\n  title: string | number\n  subtitle: string | number\n  step: any\n}"},{name:"title",description:"Slot for the component’s title content.",description_zh:"组件标题内容的插槽。",params:"{\n  canEdit: boolean\n  hasError: boolean\n  hasCompleted: boolean\n  title: string | number\n  subtitle: string | number\n  step: any\n}"}]},ye={name:"VStepperVertical",props:{"alt-labels":{default:"false",value:"",type:"boolean",version:"",description:"Places the labels beneath the step.",description_zh:"将标签放在步骤下方。",required:!1},"bg-color":{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control’s background. Used on components that also support the color prop. - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件的背景。用于也支持 color 属性的组件。- 支持实用工具颜色（例如 Success 或 Purple）或 CSS 颜色（#033 或 RGBA（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},"collapse-icon":{default:"'$collapse'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Icon used when the expansion panel is in a collapsable state.",description_zh:"当扩展面板处于可折叠状态时使用的图标。",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},"complete-icon":{default:"undefined",value:"",type:"string",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},disabled:{default:"false",value:"",type:"boolean",version:"",description:"Disables the expansion-panel content.",description_zh:"禁用扩展面板内容。",required:!1},eager:{default:"false",value:"",type:"boolean",version:"",description:"Forces the component’s content to render when it mounts. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO.",description_zh:"强制组件的内容在挂载时呈现。如果您的内容不会在 DOM 中呈现，并且您希望为 SEO 抓取，这将非常有用。",required:!1},editable:{default:"false",value:"",type:"boolean",version:"",description:"Marks step as editable.",description_zh:"将步骤标记为可编辑。",required:!1},"edit-icon":{default:"undefined",value:"",type:"string",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},elevation:{default:"undefined",value:"",type:"string | number",version:"",description:"Designates an elevation applied to the component between 0 and 24. You can find more information on the elevation page.",description_zh:"指定应用于组件的 0 到 24 之间的高程。您可以在海拔页面上找到更多信息。",required:!1},"error-icon":{default:"undefined",value:"",type:"string",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},"expand-icon":{default:"'$expand'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Icon used when the expansion panel is in a expandable state.",description_zh:"当扩展面板处于可展开状态时使用的图标。",required:!1},flat:{default:"false",value:"",type:"boolean",version:"",description:"Removes the expansion-panel’s elevation and borders.",description_zh:"删除扩展面板的标高和边框。",required:!1},focusable:{default:"false",value:"",type:"boolean",version:"",description:"Makes the expansion-panel headers focusable.",description_zh:"使扩展面板标题可聚焦。",required:!1},"hide-actions":{default:"false",value:"",type:"boolean",version:"",description:"Hide actions bar (prev and next buttons).",description_zh:"隐藏操作栏（“上一个”和“下一个”按钮）。",required:!1},items:{default:"[]",value:"",type:"(string | Record<string, any>)[]",version:"",description:"An array of strings or objects used for automatically generating children components.",description_zh:"用于自动生成子组件的字符串或对象的数组。",required:!1},"item-title":{default:"'title'",value:"",type:"string",version:"",description:"Property on supplied items that contains its title.",description_zh:"包含其标题的所提供项上的属性。",required:!1},"item-value":{default:"'value'",value:"",type:"string",version:"",description:"Property on supplied items that contains its value.",description_zh:"包含其值的 supplied items 上的属性。",required:!1},mandatory:{default:"'force'",value:"",type:"boolean / force",version:"",description:"Forces at least one item to always be selected (if available).",description_zh:"强制始终选择至少一个项目（如果可用）。",required:!1},":max":{default:"undefined",value:"",type:"number",version:"",description:"Sets a maximum number of selections that can be made.",description_zh:"设置可以进行的最大选择数。",required:!1},mobile:{default:"false",value:"",type:"boolean",version:"",description:"Forces the stepper into a mobile state, removing labels from stepper items.",description_zh:"强制步进器进入移动状态，从步进器项中删除标签。",required:!1},"mobile-breakpoint":{default:"undefined",value:"",type:"number / xs / sm / md / lg / xl / xxl",version:"",description:"Overrides the display configuration default screen size that the component should be considered in mobile.",description_zh:"覆盖组件在移动设备中应考虑的显示配置默认屏幕大小。",required:!1},"v-model":{default:"undefined",value:"",type:"any",version:"",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v-model 值。如果 component 支持 multiple prop，则默认为空数组。",required:!1},multiple:{default:"false",value:"",type:"boolean",version:"",description:"Allows one to select multiple items.",description_zh:"允许选择多个项目。",required:!1},"next-text":{default:"'$vuetify.stepper.next'",value:"",type:"string",version:"",description:"The text used for the Next button.",description_zh:"用于 Next （下一步） 按钮的文本。",required:!1},"non-linear":{default:"false",value:"",type:"boolean",version:"",description:"Allow user to jump to any step.",description_zh:"允许用户跳转到任何步骤。",required:!1},"prev-text":{default:"'$vuetify.stepper.prev'",value:"",type:"string",version:"",description:"The text used for the Prev button.",description_zh:"用于 Prev 按钮的文本。",required:!1},readonly:{default:"false",value:"",type:"boolean",version:"",description:"Makes the entire expansion-panel read only.",description_zh:"将整个扩展面板设置为只读。",required:!1},ripple:{default:"false",value:"",type:"boolean | { class: string }",version:"",description:"Applies the v-ripple directive.",description_zh:"应用 v-ripple 指令。",required:!1},rounded:{default:"undefined",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. Find more information on available border radius classes on the Border Radius page.",description_zh:"指定应用于组件的 border-radius。这可以是 0、xs、sm、true、lg、xl、pill、circle 和 shaped。在 Border Radius 页面上查找有关可用边界半径类的更多信息。",required:!1},"selected-class":{default:"undefined",value:"",type:"string",version:"",description:"Configure the active CSS class applied when an item is selected.",description_zh:"配置在选择项目时应用的活动 CSS 类。",required:!1},tag:{default:"'div'",value:"",type:"string",version:"",description:"Specify a custom tag used on the root element.",description_zh:"指定根元素上使用的自定义标记。",required:!1},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},tile:{default:"false",value:"",type:"boolean",version:"",description:"Removes the border-radius.",description_zh:"删除 border-radius。",required:!1},variant:{default:"'accordion'",value:"",type:"default / accordion / inset / popout",version:"",description:"Applies a distinct style to the component.",description_zh:"将不同的样式应用于组件。",required:!1}},link:"https://vuetifyjs.com/en/api/v-stepper-vertical/",link_zh:"https://vuetifyjs.com/en/api/v-stepper-vertical/",typeDetail:{},events:[{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件的模型更改时发出的事件。",params:"[any]",value:""}],methods:[],slots:[{name:"[`header-item.${string}`]",description:"Slot for customizing header items when using the items prop.",description_zh:"使用 items 属性时用于自定义标题项的插槽。",params:"{\n  canEdit: boolean\n  hasError: boolean\n  hasCompleted: boolean\n  title: string | number\n  subtitle: string | number\n  step: any\n}"},{name:"[`item.${string}`]",description:"Slot for customizing the content for each step.",description_zh:"用于自定义每个步骤内容的插槽。",params:"string | Record<string, any>"},{name:"actions",description:"Slot for customizing v-stepper-actions.",description_zh:"用于自定义 v-stepper-actions 的插槽。",params:"{\n  canEdit: boolean\n  hasError: boolean\n  hasCompleted: boolean\n  title: string | number\n  subtitle: string | number\n  step: any\n}"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{ prev: () => void; next: () => void } & { step: unknown }"},{name:"icon",description:"Slot for customizing all stepper item icons.",description_zh:"用于自定义所有步进项图标的插槽。",params:"{\n  canEdit: boolean\n  hasError: boolean\n  hasCompleted: boolean\n  title: string | number\n  subtitle: string | number\n  step: any\n}"},{name:"item",description:"Define a custom item appearance.",description_zh:"定义自定义项外观。",params:"string | Record<string, any>"},{name:"next",description:"Slot for customizing the next step functionailty",description_zh:"用于自定义下一步功能的插槽",params:"{\n  canEdit: boolean\n  hasError: boolean\n  hasCompleted: boolean\n  title: string | number\n  subtitle: string | number\n  step: any\n}"},{name:"prev",description:"Slot for customizing the prev step functionality",description_zh:"用于自定义上一个步骤功能的插槽",params:"{\n  canEdit: boolean\n  hasError: boolean\n  hasCompleted: boolean\n  title: string | number\n  subtitle: string | number\n  step: any\n}"},{name:"subtitle",description:"Slot for the component’s subtitle content.",description_zh:"组件字幕内容的插槽。",params:"{\n  canEdit: boolean\n  hasError: boolean\n  hasCompleted: boolean\n  title: string | number\n  subtitle: string | number\n  step: any\n}"},{name:"title",description:"Slot for the component’s title content.",description_zh:"组件标题内容的插槽。",params:"{\n  canEdit: boolean\n  hasError: boolean\n  hasCompleted: boolean\n  title: string | number\n  subtitle: string | number\n  step: any\n}"}],exposed:[]},Ie={name:"VStepperVerticalActions",props:{color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},disabled:{default:"false",value:"",type:"boolean / prev / next",version:"",description:"Removes the ability to click or target the component.",description_zh:"删除单击组件或定位组件的功能。",required:!1},"next-text":{default:"'$vuetify.stepper.next'",value:"",type:"string",version:"",description:"The text used for the Next button.",description_zh:"用于 Next （下一步） 按钮的文本。",required:!1},"prev-text":{default:"'$vuetify.stepper.prev'",value:"",type:"string",version:"",description:"The text used for the Prev button.",description_zh:"用于 Prev 按钮的文本。",required:!1}},link:"https://vuetifyjs.com/en/api/v-stepper-vertical-actions/",link_zh:"https://vuetifyjs.com/en/api/v-stepper-vertical-actions/",typeDetail:{},events:[{name:"click:next",description:"Event emitted when clicking the next button.",description_zh:"单击下一步按钮时触发的事件。",params:"[]",value:""},{name:"click:prev",description:"Event emitted when clicking the prev button.",description_zh:"单击上一个按钮时触发的事件。",params:"[]",value:""}],methods:[],slots:[{name:"next",description:"Slot for customizing the next step functionailty",description_zh:"用于自定义下一步功能的插槽",params:"{ props: { onClick: () => void } }"},{name:"prev",description:"Slot for customizing the prev step functionality",description_zh:"用于自定义上一个步骤功能的插槽",params:"{ props: { onClick: () => void } }"}],exposed:[]},Se={name:"VStepperVerticalItem",props:{"bg-color":{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control’s background. Used on components that also support the color prop. - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件的背景。用于也支持 color 属性的组件。- 支持实用工具颜色（例如 Success 或 Purple）或 CSS 颜色（#033 或 RGBA（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},"collapse-icon":{default:"",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Icon used when the expansion panel is in a collapsable state.",description_zh:"当扩展面板处于可折叠状态时使用的图标。",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},complete:{default:"false",value:"",type:"boolean",version:"",description:"Marks step as complete.",description_zh:"将步骤标记为完成。",required:!1},"complete-icon":{default:"'$complete'",value:"",type:"string",version:"",description:"Icon to display when step is marked as completed.",description_zh:"步骤标记为已完成时显示的图标。",required:!1},disabled:{default:"false",value:"",type:"boolean",version:"",description:"Disables the expansion-panel content.",description_zh:"禁用扩展面板内容。",required:!1},eager:{default:"false",value:"",type:"boolean",version:"",description:"Forces the component’s content to render when it mounts. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO.",description_zh:"强制组件的内容在挂载时呈现。如果您的内容不会在 DOM 中呈现，并且您希望为 SEO 抓取，这将非常有用。",required:!1},editable:{default:"false",value:"",type:"boolean",version:"",description:"Marks step as editable.",description_zh:"将步骤标记为可编辑。",required:!1},"edit-icon":{default:"'$edit'",value:"",type:"string",version:"",description:"Icon to display when step is editable.",description_zh:"步骤可编辑时显示的图标。",required:!1},elevation:{default:"undefined",value:"",type:"string | number",version:"",description:"Designates an elevation applied to the component between 0 and 24. You can find more information on the elevation page.",description_zh:"指定应用于组件的 0 到 24 之间的高程。您可以在海拔页面上找到更多信息。",required:!1},error:{default:"false",value:"",type:"boolean",version:"",description:"Puts the stepper item in a manual error state.",description_zh:"将步进项置于手动错误状态。",required:!1},"error-icon":{default:"'$error'",value:"",type:"string",version:"",description:"Icon to display when step has an error.",description_zh:"步骤出错时显示的图标。",required:!1},"expand-icon":{default:"",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Icon used when the expansion panel is in a expandable state.",description_zh:"当扩展面板处于可展开状态时使用的图标。",required:!1},focusable:{default:"false",value:"",type:"boolean",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},height:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the height for the component.",description_zh:"设置组件的高度。",required:!1},"hide-actions":{default:"false",value:"",type:"boolean",version:"",description:"Hide the expand icon in the content title.",description_zh:"隐藏内容标题中的展开图标。",required:!1},icon:{default:"undefined",value:"",type:"string",version:"",description:"Apply a specific icon using the v-icon component.",description_zh:"使用 v-icon 组件应用特定图标。",required:!1},"max-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum height for the component.",description_zh:"设置组件的最大高度。",required:!1},"max-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。",required:!1},"min-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum height for the component.",description_zh:"设置组件的最小高度。",required:!1},"min-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum width for the component.",description_zh:"设置组件的最小宽度。",required:!1},readonly:{default:"false",value:"",type:"boolean",version:"",description:"Makes the expansion-panel content read only.",description_zh:"将扩展面板内容设置为只读。",required:!1},ripple:{default:"false",value:"",type:"boolean | { class: string }",version:"",description:"Applies the v-ripple directive.",description_zh:"应用 v-ripple 指令。",required:!1},rounded:{default:"undefined",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. Find more information on available border radius classes on the Border Radius page.",description_zh:"指定应用于组件的 border-radius。这可以是 0、xs、sm、true、lg、xl、pill、circle 和 shaped。在 Border Radius 页面上查找有关可用边界半径类的更多信息。",required:!1},rules:{default:"[]",value:"",type:"ValidationRule[]",version:"",description:"Accepts a mixed array of types function, boolean and string. Functions pass an input value as an argument and must return either true / false or a string containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) false or is a string.",description_zh:"接受 function、boolean 和 string 类型的混合数组。函数将输入值作为参数传递，并且必须返回 true / false 或包含错误消息的字符串。如果函数返回 （或数组中的任何值包含） false 或为字符串，则输入字段将进入错误状态。",required:!1},"selected-class":{default:"undefined",value:"",type:"string",version:"",description:"Configure the active CSS class applied when an item is selected.",description_zh:"配置在选择项目时应用的活动 CSS 类。",required:!1},static:{default:"false",value:"",type:"boolean",version:"",description:"Remove title size expansion when selected.",description_zh:"选中后删除标题大小扩展。",required:!1},subtitle:{default:"undefined",value:"",type:"string",version:"",description:"Specify a subtitle text for the component.",description_zh:"指定组件的副标题文本。",required:!1},tag:{default:"'div'",value:"",type:"string",version:"",description:"Specify a custom tag used on the root element.",description_zh:"指定根元素上使用的自定义标记。",required:!1},text:{default:"undefined",value:"",type:"string",version:"",description:"Specify content text for the component.",description_zh:"指定组件的内容文本。",required:!1},tile:{default:"false",value:"",type:"boolean",version:"",description:"Removes any applied border-radius from the component.",description_zh:"从组件中删除任何应用的 border-radius。",required:!1},title:{default:"undefined",value:"",type:"string",version:"",description:"Specify a title text for the component.",description_zh:"指定组件的标题文本。",required:!1},value:{default:"undefined",value:"",type:"any",version:"",description:"Controls the opened/closed state of content.",description_zh:"控制内容的打开/关闭状态。",required:!1},width:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the width for the component.",description_zh:"设置组件的宽度。",required:!1}},link:"https://vuetifyjs.com/en/api/v-stepper-vertical-item/",link_zh:"https://vuetifyjs.com/en/api/v-stepper-vertical-item/",typeDetail:{},events:[{name:"click:finish",description:"Event emitted when clicking the finish button",description_zh:"单击完成按钮时发出的事件",params:"[]",value:""},{name:"click:next",description:"Event emitted when clicking the next button",description_zh:"单击下一步按钮时发出的事件",params:"[]",value:""},{name:"click:prev",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"[]",value:""}],methods:[],slots:[{name:"actions",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  canEdit: boolean\n  hasError: boolean\n  hasCompleted: boolean\n  title: string | number\n  subtitle: string | number\n  step: any\n} & { next: () => void; prev: () => void }"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{\n  canEdit: boolean\n  hasError: boolean\n  hasCompleted: boolean\n  title: string | number\n  subtitle: string | number\n  step: any\n}"},{name:"icon",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  canEdit: boolean\n  hasError: boolean\n  hasCompleted: boolean\n  title: string | number\n  subtitle: string | number\n  step: any\n}"},{name:"next",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  canEdit: boolean\n  hasError: boolean\n  hasCompleted: boolean\n  title: string | number\n  subtitle: string | number\n  step: any\n}"},{name:"prev",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{\n  canEdit: boolean\n  hasError: boolean\n  hasCompleted: boolean\n  title: string | number\n  subtitle: string | number\n  step: any\n}"},{name:"subtitle",description:"Slot for the component’s subtitle content.",description_zh:"组件字幕内容的插槽。",params:"{\n  canEdit: boolean\n  hasError: boolean\n  hasCompleted: boolean\n  title: string | number\n  subtitle: string | number\n  step: any\n}"},{name:"text",description:"Slot for the component’s text content.",description_zh:"组件文本内容的插槽。",params:"{\n  canEdit: boolean\n  hasError: boolean\n  hasCompleted: boolean\n  title: string | number\n  subtitle: string | number\n  step: any\n}"},{name:"title",description:"Slot for the component’s title content.",description_zh:"组件标题内容的插槽。",params:"{\n  canEdit: boolean\n  hasError: boolean\n  hasCompleted: boolean\n  title: string | number\n  subtitle: string | number\n  step: any\n}"}],exposed:[]},ze={name:"VStepperWindow",props:{direction:{default:"horizontal",value:"",type:"horizontal / vertical",description:"The transition direction when changing windows.",description_zh:"更改窗口时的过渡方向。"},disabled:{default:"false",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},":v-model":{default:"undefined",value:"",type:"any",description:"The value of the component v-mode. If the component supports variants, the default is an empty array.",description_zh:"组件 v-mode 的值。如果组件支持多属性，默认为空数组。"},reverse:{default:"false",value:"",type:"boolean",description:"Reverses the normal direction of the transition.",description_zh:"反转正常的过渡方向。"},"selected-class":{default:"v-window-item--active",value:"",type:"string",description:"Configure the name of the CSS class that will be applied when the selected item is selected.",description_zh:"配置被选中项目时应用的 CSS 类名。"},tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-stepper-window/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-stepper-window/#links",typeDetail:{},events:[{name:"update:modelValue",description:"An event that is raised when a component's model-value changes.",description_zh:"当组件的 model-value 更改时引发的事件。",params:"[unknown]",value:""}],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},_e={name:"VStepperWindowItem",props:{disabled:{default:"false",value:"",type:"boolean",description:"Prevents the item from becoming active when using the “next” and “prev” buttons or the toggle method.",description_zh:"防止项目在使用“下一个”和“上一个”按钮或切换方法时变为活动状态。"},eager:{default:"false",value:"",type:"boolean",description:"Forces the component’s content to render when it mounts. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO.",description_zh:"强制在装入组件时呈现组件的内容。如果您的内容不会在 DOM 中呈现，而您希望为 SEO 进行爬网，这将非常有用。"},"reverse-transition":{default:"undefined",value:"",type:"string | boolean",description:"Sets the reverse transition.",description_zh:"设置反向转换。"},"selected-class":{default:"undefined",value:"",type:"string",description:"Configure the name of the CSS class that will be applied when the selected item is selected.",description_zh:"配置被选中项目时应用的 CSS 类名。"},transition:{default:"undefined",value:"",type:"string | boolean",description:"The transition used when the component progressing through items. Can be one of the built in or custom transition.",description_zh:"组件在项目中前进时使用的过渡。可以是内置过渡或自定义过渡之一。"},value:{default:"undefined",value:"",type:"any",description:"The value used when selecting a component in a group. If not provided, a unique ID is used.",description_zh:"在组中选择组件时使用的值。如果没有提供，则使用唯一 ID。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-stepper-window-item/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-stepper-window-item/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},we={name:"VSvgIcon",props:{icon:{default:"undefined",value:"",type:"any",description:"Assign a v-icon icon to the button.",description_zh:"为按钮指定一个 v-icon 图标。"},tag:{default:"undefined",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-svg-icon/#props",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-svg-icon/#props",typeDetail:{},events:[],methods:[],slots:[]},li={name:"VSwitch",props:{"append-icon":{default:"undefined",value:"",type:"any",description:"Creates a v-icon component after default content in the append slot.",description_zh:"在追加槽中的默认内容之后创建一个 v-icon 组件。"},"base-color":{default:"undefined",value:"",type:"string",description:"Sets the color of the input when it is not focused.",description_zh:"设置输入未聚焦时的颜色。"},"center-affix":{default:"true",value:"",type:"boolean",description:"Vertically align appendInner, prependInner, clearIcon and label in the center.",description_zh:"将 appendInner、prependInner、clearIcon 和标签垂直对齐在中心。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},"defaults-target":{default:"undefined",value:"",type:"string",description:"The target component to provide defaults values for.",description_zh:"要为其提供默认值的目标组件。"},density:{default:"default",value:"",type:"default / comfortable / compact",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。"},direction:{default:"horizontal",value:"",type:"horizontal / vertical",description:"Change the input direction.",description_zh:"改变输入方向."},disabled:{default:"null",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},error:{default:"false",value:"",type:"boolean",description:"Puts the input in a manual error state.",description_zh:"将输入置于手动错误状态。"},"error-messages":{default:"[]",value:"",type:"string | string[]",description:"Put the input box into an error state and pass in a custom error message. will be combined with any validation from the rules property. This field does not trigger validation.",description_zh:"将输入框置于错误状态，并传入自定义的错误信息。将与来自 rules 属性的任何验证相结合。这个字段不会触发验证。"},"false-icon":{default:"undefined",value:"",type:"any",description:"The icon used when it is inactive.",description_zh:"处于不活动状态时使用的图标。"},"false-value":{default:"undefined",value:"",type:"any",description:"Sets value for falsy state.",description_zh:"设置虚假状态的值。"},flat:{default:"false",value:"",type:"boolean",description:"Display component without elevation. Default elevation for thumb is 4dp, flat resets it.",description_zh:"不带高程的显示组件。拇指的默认高度为 4dp，平面重置它。"},focused:{default:"false",value:"",type:"boolean",description:"Force the component to use the style when focused.",description_zh:"强制组件使用聚焦时的样式。"},"hide-details":{default:"false",value:"",type:"true / false / auto",description:"Hide hints and validation errors. When set to auto and only displays information (prompts, error messages, counter values, etc.) to display.",description_zh:"隐藏提示和验证错误。当设置为 auto 并且只有在有信息（提示、错误信息、计数器值等）要显示时，才会显示信息。"},"hide-spin-buttons":{default:"false",value:"",type:"boolean",description:"When the type is set to number, the rotation button is hidden on the input element.",description_zh:"当类型设置为 number 时，在 input 元素上隐藏旋转按钮。"},hint:{default:"undefined",value:"",type:"string",description:"Displays hint text below the input when focused. Force this always open with the persistent-hint property.",description_zh:"聚焦时在输入下方显示提示文本。使用 persistent-hint 属性强制它始终打开。"},id:{default:"undefined",value:"",type:"string",description:"Sets the DOM id on the component.",description_zh:"设置组件上的 DOM ID。"},indeterminate:{default:"false",value:"",type:"boolean",description:"Sets an indeterminate state for the switch.",description_zh:"设置交换机的不确定状态。"},inline:{default:"false",value:"",type:"boolean",description:"Puts children inputs into a row.",description_zh:"将子输入放入一行中。"},inset:{default:"false",value:"",type:"boolean",description:"Enlarge the v-switch track to encompass the thumb.",description_zh:"放大 V 型开关轨道以包含拇指。"},label:{default:"undefined",value:"",type:"string",description:"Sets the text of the v-label or v-field-label component.",description_zh:"设置 v-label 或 v-field-label 组件的文本。",required:!0},loading:{default:"false",value:"",type:"string | boolean",description:"Displays circular progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - primary, secondary, success, info, warning, error) or a Boolean which uses the component color (set by color prop - if it’s supported by the component) or the primary color.",description_zh:"显示圆形进度条。可以是指定应用于进度条的颜色的 String（任何材质颜色或主题颜色 - 主要、次要、成功、信息、警告、错误），也可以是使用组件颜色（由 color 属性设置 - 如果组件支持）或主要颜色的布尔值。"},"max-errors":{default:"1",value:"",type:"string | number",description:"Control the maximum number of shown errors from validation.",description_zh:"控制验证中显示的最大错误数。"},messages:{default:"[]",value:"",type:"string | string[]",description:"Display a list of messages or messages (if using strings)",description_zh:"显示消息列表或消息（如果使用字符串）"},":v-model":{default:"undefined",value:"",type:"unknown",description:"The value of the component v-mode. If the component supports variants, the default is an empty array.",description_zh:"组件 v-mode 的值。如果组件支持多属性，默认为空数组。"},multiple:{default:"null",value:"",type:"boolean",description:"Changes expected model to an array.",description_zh:"将预期模型更改为数组。"},name:{default:"undefined",value:"",type:"string",description:"Set the name property of the component.",description_zh:"设置组件的 name 属性."},"persistent-hint":{default:"false",value:"",type:"boolean",description:"Forces hint to always be visible.",description_zh:"力暗示始终可见。"},"prepend-icon":{default:"undefined",value:"",type:"any",description:"Prepends an icon to the component, uses the same syntax as v-icon.",description_zh:"在组件前面添加一个图标，使用与 v-icon 相同的语法。"},readonly:{default:"null",value:"",type:"boolean",description:"Puts input in readonly state.",description_zh:"将输入置于只读状态。"},ripple:{default:"true",value:"",type:"boolean",description:"Apply the v-ripple directive.",description_zh:"应用 v-ripple 指令。"},rules:{default:"[]",value:"",type:"ValidationRule[]",description:"Accepts a mixed array of types function, boolean and string. Functions pass an input value as an argument and must return either true / false or a string containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) false or is a string.",description_zh:"接受 function、boolean 和 string 类型的混合数组。函数将输入值作为参数传递，并且必须返回 true / false 或包含错误消息的字符串。如果函数返回（或数组中的任何值包含）false 或字符串，则输入字段将进入错误状态。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},"true-icon":{default:"undefined",value:"",type:"any",description:"The icon used when it is active.",description_zh:"处于激活状态时使用的图标."},"true-value":{default:"undefined",value:"",type:"any",description:"Sets value for truthy state.",description_zh:"设置真实状态的值。"},type:{default:"undefined",value:"",type:"string",description:"Provides the default type for children selection controls.",description_zh:"为子项选择控件提供默认类型。"},"validate-on":{default:"undefined",value:"",type:" / input / blur / submit / input lazy / blur lazy / submit lazy / lazy input / lazy blur / lazy submit / lazy",description:"Change what type of event triggers validation to run.",description_zh:"更改触发要运行的验证的事件类型。"},"validation-value":{default:"undefined",value:"",type:"any",description:"The value used when applying validation rules.",description_zh:"应用验证规则时使用的值。"},value:{default:"undefined",value:"",type:"any",description:"The value used when selecting a component in a group. If not provided, a unique ID is used.",description_zh:"在组中选择组件时使用的值。如果没有提供，则使用唯一 ID。"},"value-comparator":{default:"undefined",value:"",type:"(a: any, b: any) => boolean",description:"Apply a custom comparison algorithm to compare model-value and values contains in the items prop.",description_zh:"应用自定义比较算法来比较模型值和 items 属性中包含的值。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-switch/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-switch/#links",typeDetail:{},events:[{name:"click:append",description:"Emitted when appended icon is clicked.",description_zh:"单击附加图标时发出。",params:"[MouseEvent]",value:""},{name:"click:prepend",description:"Emitted when prepended icon is clicked.",description_zh:"单击前置图标时发出。",params:"[MouseEvent]",value:""},{name:"update:focused",description:"Event that is emitted when the component’s focus state changes.",description_zh:"当组件的焦点状态更改时发出的事件。",params:"[boolean]",value:""},{name:"update:indeterminate",description:"Event that is emitted when the component’s indeterminate state changes.",description_zh:"当组件的不确定状态发生更改时发出的事件。",params:"[boolean]",value:""},{name:"update:modelValue",description:"An event that is raised when a component's model-value changes.",description_zh:"当组件的 model-value 更改时引发的事件。",params:"[unknown]",value:""}],methods:[],slots:[{name:"append",description:"Adds an item inside the input and after input content.",description_zh:"在 input 内容内和 After input 内容中添加一个项目。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n} & {\n  backgroundColorClasses: Ref<string[]>\n  backgroundColorStyles: Ref<CSSProperties>\n}"},{name:"details",description:"Slot for custom input details to modifying the display of messages.",description_zh:"用于修改消息显示的自定义输入详细信息的插槽。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"input",description:"The slot used for the default input element.",description_zh:"用于默认 input 元素的插槽。",params:"{\n  model: WritableComputedRef<boolean>\n  textColorClasses: Ref<string[]>\n  textColorStyles: Ref<CSSProperties>\n  backgroundColorClasses: Ref<string[]>\n  backgroundColorStyles: Ref<CSSProperties>\n  inputNode: VNode<RendererNode, RendererElement, { [key: string]: any }>\n  icon:\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n  props: {\n    onBlur: (e: Event) => void\n    onFocus: (e: FocusEvent) => void\n    id: string\n  }\n}"},{name:"label",description:"The default slot of the v-label or v-field-label component.",description_zh:"v-label 或 v-field-label 组件的默认插槽。",params:"{ label: string; props: Record<string, unknown> }"},{name:"loader",description:"Slot for custom loader (displayed when loading prop is equal to true).",description_zh:"自定义加载器的插槽（当加载 prop 等于 true 时显示）。",params:"{ color: string; isActive: boolean }"},{name:"message",description:"Slot used to customize the message content.",description_zh:"用于自定义消息内容的插槽。",params:"{ message: string }"},{name:"prepend",description:"Adds an item outside the input and before input content.",description_zh:"在输入内容之外和之前添加项目。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"thumb",version:" v3.5.0",description:"Slot for custom thumb content.",description_zh:"用于自定义 Thumb 内容的插槽。",params:"{\n  icon:\n    | string\n    | (string | [string, number])[]\n    | (new () => any)\n    | FunctionalComponent\n} & { model: Ref<boolean>; isValid: ComputedRef<boolean | null> }"},{name:"track-false",version:"v3.5.0",description:"Slot for custom track content when value is false.",description_zh:"当 value 为 false 时，自定义轨道内容的插槽。",params:"{ model: Ref<boolean>; isValid: ComputedRef<boolean | null> }"},{name:"track-true",version:"v3.5.0",description:"Slot for custom track content when value is true.",description_zh:"当值为 true 时，自定义轨道内容的插槽。",params:"{ model: Ref<boolean>; isValid: ComputedRef<boolean | null> }"}]},di={name:"VSystemBar",props:{absolute:{default:"false",value:"",type:"boolean",description:"给组件应用 position: absolute",description_zh:"给组件应用 position: absolute"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},elevation:{default:"undefined",value:"",type:"string | number",description:"The elevation of the component is acceptable from 0 to 24. You can read more on the Elevation page.",description_zh:"组件的海拔可接受 0 到 24 之间的值。你可以在 elevation page 浏览更多信息。"},height:{default:"undefined",value:"",type:"string | number",description:"Sets the height of the component.",description_zh:"设定组件的高度。"},name:{default:"undefined",value:"",type:"string",description:"Assign a specific name for layout registration.",description_zh:"为布局注册指定特定名称。"},order:{default:"0",value:"",type:"string | number",description:"Adjust the order of the component in relation to its registration order.",description_zh:"根据组件的注册顺序调整组件的顺序。"},rounded:{default:"undefined",value:"",type:"string | number | boolean",description:"Applies the border-radius style to the specified component. You can get more information about this on the Corner Radius of Borders page",description_zh:"对指定的组件应用 border-radius 样式。您可以在 边框的圆角半径页面 获取更多有关信息"},tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},window:{default:"false",value:"",type:"boolean",description:"Increase the system bar height to 32px (24px default).",description_zh:"将系统栏高度增加到 32px（24px 默认值）。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-system-bar/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-system-bar/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},pi={name:"VTab",props:{"active-color":{default:"undefined",value:"",type:"string",version:"",description:"The applied color when the component is in an active state.",description_zh:"组件处于活动状态时应用的颜色。",required:!1},"append-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Creates a v-icon component after default content in the append slot.",description_zh:"在附加插槽中的默认内容之后创建一个 v 图标组件。",required:!1},"base-color":{default:"undefined",value:"",type:"string",version:"",description:"Sets the color of component when not focused.",description_zh:"设置未聚焦时组件的颜色。",required:!1},border:{default:"false",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be xs, sm, md, lg, xl.",description_zh:"指定应用于组件的 border-radius。这可以是 xs、sm、md、lg、xl。",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},density:{default:"'default'",value:"",type:"default / comfortable / compact",version:"",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。",required:!1},direction:{default:"'horizontal'",value:"",type:"horizontal / vertical",version:"",description:"Changes the direction of the tabs. Can be either horizontal or vertical.",description_zh:"更改选项卡的方向。可以是水平或垂直。",required:!1},disabled:{default:"false",value:"",type:"boolean",version:"",description:"Removes the ability to click or target the component.",description_zh:"删除单击组件或定位组件的功能。",required:!1},elevation:{default:"undefined",value:"",type:"string | number",version:"",description:"Designates an elevation applied to the component between 0 and 24. You can find more information on the elevation page.",description_zh:"指定应用于组件的 0 到 24 之间的高程。您可以在海拔页面上找到更多信息。",required:!1},exact:{default:"false",value:"",type:"boolean",version:"",description:"Exactly match the link. Without this, ‘/’ will match every route. You can find more information about the exact prop on the vue-router documentation.",description_zh:"与链接完全匹配。如果没有这个，'/' 将匹配每个路由。你可以在 vue-router 文档中找到有关 exact prop 的更多信息。",required:!1},fixed:{default:"false",value:"",type:"boolean",version:"",description:"Forces component to take up all available space up to their maximum width (300px), and centers it.",description_zh:"强制组件占用其最大宽度 （300px） 之前的所有可用空间，并将其居中。",required:!1},height:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the height for the component.",description_zh:"设置组件的高度。",required:!1},"hide-slider":{default:"false",value:"",type:"boolean",version:"",description:"Hides the active tab slider component (no exit or enter animation).",description_zh:"隐藏活动的选项卡滑块组件（无退出或进入动画）。",required:!1},href:{default:"undefined",value:"",type:"string",version:"",description:"Designates the component as anchor and applies the href attribute.",description_zh:"将组件指定为锚点并应用 href 属性。",required:!1},icon:{default:"false",value:"",type:"  | boolean  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Apply a specific icon using the v-icon component. The button will become round.",description_zh:"使用 v-icon 组件应用特定图标。按钮将变为圆形。",required:!1},loading:{default:"false",value:"",type:"string | boolean",version:"",description:"Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - primary, secondary, success, info, warning, error) or a Boolean which uses the component color (set by color prop - if it’s supported by the component) or the primary color.",description_zh:"显示线性进度条。可以是指定应用于进度条的颜色的 String（任何材料颜色或主题颜色 - primary、secondary、success、info、warning、error），也可以是使用组件颜色（由 color 属性设置 - 如果组件支持）或主要颜色的 Boolean。",required:!1},"max-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum height for the component.",description_zh:"设置组件的最大高度。",required:!1},"max-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。",required:!1},"min-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum height for the component.",description_zh:"设置组件的最小高度。",required:!1},"min-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum width for the component.",description_zh:"设置组件的最小宽度。",required:!1},"prepend-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Creates a v-icon component in the prepend slot before default content.",description_zh:"在默认内容之前的前置插槽中创建 v 图标组件。",required:!1},readonly:{default:"false",value:"",type:"boolean",version:"",description:"Puts the button in a readonly state. Cannot be clicked or navigated to by keyboard.",description_zh:"将按钮置于只读状态。无法通过键盘单击或导航到。",required:!1},replace:{default:"false",value:"",type:"boolean",version:"",description:"Setting replace prop will call router.replace() instead of router.push() when clicked, so the navigation will not leave a history record. You can find more information about the replace prop on the vue-router documentation.",description_zh:"设置 replace 属性将在单击时调用 router.replace（） 而不是 router.push（），因此导航不会留下历史记录。你可以在 vue-router 文档中找到有关 replace prop 的更多信息。",required:!1},ripple:{default:"true",value:"",type:"boolean | { class: string }",version:"",description:"Applies the v-ripple directive.",description_zh:"应用 v-ripple 指令。",required:!1},rounded:{default:"undefined",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. Find more information on available border radius classes on the Border Radius page.",description_zh:"指定应用于组件的 border-radius。这可以是 0、xs、sm、true、lg、xl、pill、circle 和 shaped。在 Border Radius 页面上查找有关可用边界半径类的更多信息。",required:!1},"selected-class":{default:"'v-tab--selected'",value:"",type:"string",version:"",description:"Configure the active CSS class applied when an item is selected.",description_zh:"配置在选择项目时应用的活动 CSS 类。",required:!1},size:{default:"'default'",value:"",type:"string | number",version:"",description:"Sets the height and width of the component. Default unit is px. Can also use the following predefined sizes: x-small, small, default, large, and x-large.",description_zh:"设置组件的高度和宽度。默认单位为 px。还可以使用以下预定义大小：x-small、small、default、large 和 x-large。",required:!1},"slider-color":{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the slider when active on that component - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"在该组件上处于活动状态时，将指定的颜色应用于滑块 - 支持实用程序颜色（例如，Success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},slim:{default:"false",value:"",type:"boolean",version:"",description:"Reduces padding to 0 8px.",description_zh:"将填充减少到 0 8px。",required:!1},stacked:{default:"false",value:"",type:"boolean",version:"",description:"Displays the tab as a flex-column.",description_zh:"将选项卡显示为 flex 列。",required:!1},tag:{default:"'button'",value:"",type:"string",version:"",description:"Specify a custom tag used on the root element.",description_zh:"指定根元素上使用的自定义标记。",required:!1},text:{default:"undefined",value:"",type:"string",version:"v3.2.0",description:"Specify content text for the component.",description_zh:"指定组件的内容文本。",required:!1},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},tile:{default:"false",value:"",type:"boolean",version:"",description:"Removes any applied border-radius from the component.",description_zh:"从组件中删除任何应用的 border-radius。",required:!1},to:{default:"undefined",value:"",type:"RouteLocationRaw",version:"",description:"Denotes the target route of the link. You can find more information about the to prop on the vue-router documentation.",description_zh:"表示链路的目标路由。你可以在 vue-router 文档中找到有关 to prop 的更多信息。",required:!1},":value":{default:"undefined",value:"",type:"any",version:"",description:"The value used when the component is selected in a group. If not provided, a unique ID will be used.",description_zh:"在组中选择组件时使用的值。如果未提供，将使用唯一 ID。",required:!0,foreach:!0},variant:{default:"'text'",value:"",type:"flat / text / elevated / tonal / outlined / plain",version:"",description:"Applies a distinct style to the component.",description_zh:"将不同的样式应用于组件。",required:!1},width:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the width for the component.",description_zh:"设置组件的宽度。",required:!1}},link:"https://vuetifyjs.com/en/api/v-tab/",link_zh:"https://vuetifyjs.com/en/api/v-tab/",typeDetail:{},events:[],methods:[],slots:[{name:"append",description:"Adds an item inside the input and after input content.",description_zh:"在 input 内容内和 After input 内容中添加一个项目。"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。"},{name:"loader",description:"Slot for custom loader (displayed when loading prop is equal to true).",description_zh:"自定义加载器的插槽（当加载 prop 等于 true 时显示）。"},{name:"prepend",description:"Adds an item outside the input and before input content.",description_zh:"在输入内容之外和之前添加项目。"}],exposed:[{name:"group",description:"Internal representation when used in VBtnToggle.",description_zh:"Internal representation when used in VBtnToggle.",detail:"{\n  id: number\n  isSelected: boolean\n  isFirst: boolean\n  isLast: boolean\n  toggle: () => void\n  select: (value: boolean) => void\n  selectedClass: false | (string | undefined)[]\n  value: unknown\n  disabled: boolean | undefined\n  group: {\n    register: (item: GroupItem, cmp: ComponentInternalInstance) => void\n    unregister: (id: number) => void\n    select: (id: number, value: boolean) => void\n    selected: readonly number[]\n    isSelected: (id: number) => boolean\n    prev: () => void\n    next: () => void\n    selectedClass: string | undefined\n    items: { id: number; value: unknown; disabled: boolean | undefined }[]\n    disabled: boolean | undefined\n    getItemIndex: (value: unknown) => number\n  }\n}"}]},ui={name:"VTable",props:{density:{default:"default",value:"",type:"default / comfortable / compact",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。"},"fixed-footer":{default:"false",value:"",type:"boolean",description:"Use the fixed-footer prop together with the height prop to fix the footer to the bottom of the table.",description_zh:"将固定页脚道具与高度道具一起使用，将页脚固定在桌子底部。"},"fixed-header":{default:"false",value:"",type:"boolean",description:"Use the fixed-header prop together with the height prop to fix the header to the top of the table.",description_zh:"将 fixed-header prop 与 height prop 一起使用，将 header 固定到表的顶部。"},height:{default:"undefined",value:"",type:"string | number",description:"Use the height prop to set the height of the table.",description_zh:"使用 height prop 设置桌子的高度。"},hover:{default:"false",value:"",type:"boolean",description:"Will add a hover effect to a table’s row when the mouse is over it.",description_zh:"当鼠标悬停在表的行上时，将向表的行添加悬停效果。"},tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-table/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-table/#links",typeDetail:{},events:[],methods:[],slots:[{name:"bottom",description:"Slot to add content below the table.",description_zh:"用于在表格下方添加内容的插槽。"},{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"},{name:"top",description:"Slot to add content above the table.",description_zh:"用于在表格上方添加内容的插槽。"},{name:"wrapper",description:"Slots for custom rendering of the table wrapper.",description_zh:"用于自定义呈现表包装器的插槽。"}]},ci={name:"VTabs",props:{"align-tabs":{default:"start",value:"",type:"start / title / center / end",description:"Aligns the tabs to the start, center, or end of container. Also accepts title to align with the v-toolbar-title component.",description_zh:"将选项卡与容器的开头、中心或结尾对齐。还接受标题以与 v-toolbar-title 组件对齐。"},"bg-color":{default:"undefined",value:"",type:"string",description:"Applies specified color to the control’s background. Used on components that also support the color prop. - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件的背景。用于也支持 color 属性的组件。- 支持实用程序颜色（例如成功或紫色）或 CSS 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},"center-active":{default:"false",value:"",type:"boolean",description:"Force the selected option to be centered.",description_zh:"强制将选中的选项居中。"},color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the selected tab - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定颜色应用于所选选项卡 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},density:{default:"default",value:"",type:"default / comfortable / compact",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。"},direction:{default:"horizontal",value:"",type:"horizontal / vertical",description:'Change the direction in which the labels are arranged. It can be "horizontal" or "vertical".',description_zh:"更改标签的排列方向。可以是 “水平” 或 “垂直”。"},disabled:{default:"false",value:"",type:"boolean",description:"Set all child components to a disabled state.",description_zh:"将所有子组件设置为禁用状态。"},"fixed-tabs":{default:"false",value:"",type:"boolean",description:"v-tabs-item min-width 160px, max-width 360px.",description_zh:"v-tabs-item 最小宽度 160px，最大宽度 360px。"},grow:{default:"false",value:"",type:"boolean",description:"Force the v-tab to take up all available space.",description_zh:"强制 v-tab 占用所有可用空间。"},height:{default:"undefined",value:"",type:"string | number",description:"Sets the height of the options page.",description_zh:"设置选项页的高度。"},"hide-slider":{default:"false",value:"",type:"boolean",description:"Hide the generated v-tabs-slider.",description_zh:"隐藏生成的 v-tabs-slider 。"},items:{default:"[]",value:"",type:"(string | number | Record<string, any>)[]",description:'Options to display in the component. This can be a string or an array of objects containing the property "title".',description_zh:'组件中要显示的选项。这可以是一个字符串或对象的数组包含属性"标题"。'},mandatory:{default:"force",value:"",type:"true / false / force",description:"Force at least one item to be selected, if available.",description_zh:"强制至少选择一个项目（如果可用）。"},":max":{default:"undefined",value:"",type:"number",description:"Set the maximum number that can be selected.",description_zh:"设置可以选择的最大数量。"},"mobile-breakpoint":{default:"undefined",value:"",type:"number / xs / sm / md / lg / xl / xxl",description:"Set and specify screen size breakpoints for mobile devices for components",description_zh:"为组件设置和指定移动设备的屏幕尺寸断点"},":v-model":{default:"undefined",value:"",type:"any",description:"The value of the component v-mode. If the component supports variants, the default is an empty array.",description_zh:"组件 v-mode 的值。如果组件支持多属性，默认为空数组。",required:!0},multiple:{default:"false",value:"",type:"boolean",description:"Allows you to select multiple options.",description_zh:"允许您选择多个选项。"},"next-icon":{default:"$next",value:"",type:"any",description:"Icon for customizing the page turn right button.",description_zh:"用于自定义向右翻页按钮的图标。"},"prev-icon":{default:"$prev",value:"",type:"any",description:"Icon for customizing the page turn left button.",description_zh:"用于自定义向左翻页按钮的图标。"},"selected-class":{default:"v-slide-group-item--active",value:"",type:"string",description:"Configure the name of the CSS class that will be applied when the selected item is selected.",description_zh:"配置被选中项目时应用的 CSS 类名。"},"show-arrows":{default:"false",value:"",type:"string | boolean",description:"If a tab item extends beyond its container, a pagination arrow is displayed. For mobile devices, arrows are displayed only when this property is used.",description_zh:"如果选项卡项目超出其容器，则显示分页箭头。 对于移动设备，仅在使用此属性时才会显示箭头。"},"slider-color":{default:"undefined",value:"",type:"string",description:"Change the background color of the auto-generated v-tabs-slider.",description_zh:"改变自动生成的 v-tabs-slider 的背景颜色。"},stacked:{default:"false",value:"",type:"boolean",description:"Apply the stacked prop to all children v-tab components.",description_zh:"将堆叠的 prop 应用于所有子 v-tab 组件。"},symbol:{default:"undefined",value:"",type:"any",description:"The Symbol used to hook into group functionality for components like v-btn-toggle and v-bottom-navigation.",description_zh:"用于挂接到 v-btn-toggle 和 v-bottom-navigation 等组件的组功能的符号。"},tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-tabs/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-tabs/#links",typeDetail:{},events:[{name:"update:modelValue",description:"An event that is raised when a component's model-value changes.",description_zh:"当组件的 model-value 更改时引发的事件。",params:"[unknown]",value:""}],methods:[],slots:[{name:"[`item.${string}`]",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{ item: string | number | Record<string, any> }"},{name:"[`tab.${string}`]",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{ item: string | number | Record<string, any> }"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:""},{name:"item",description:"Define a custom item appearance.",description_zh:"定义自定义项外观。",params:"{ item: string | number | Record<string, any> }"},{name:"tab",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"{ item: string | number | Record<string, any> }"},{name:"window",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:""}],suggestions:["v-tab"]},Te={name:"VTabsWindow",props:{direction:{default:"'horizontal'",value:"",type:"horizontal / vertical",version:"",description:"The transition direction when changing windows.",description_zh:"更改窗口时的过渡方向。",required:!1},disabled:{default:"false",value:"",type:"boolean",version:"",description:"Removes the ability to click or target the component.",description_zh:"删除单击组件或定位组件的功能。",required:!1},"v-model":{default:"undefined",value:"",type:"any",version:"",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v-model 值。如果 component 支持 multiple prop，则默认为空数组。",required:!1},reverse:{default:"false",value:"",type:"boolean",version:"",description:"Reverse the normal transition direction.",description_zh:"反转正常过渡方向。",required:!1},"selected-class":{default:"'v-window-item--active'",value:"",type:"string",version:"",description:"Configure the active CSS class applied when an item is selected.",description_zh:"配置在选择项目时应用的活动 CSS 类。",required:!1},tag:{default:"'div'",value:"",type:"string",version:"",description:"Specify a custom tag used on the root element.",description_zh:"指定根元素上使用的自定义标记。",required:!1},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1}},link:"https://vuetifyjs.com/en/api/v-tabs-window/",link_zh:"https://vuetifyjs.com/en/api/v-tabs-window/",typeDetail:{},events:[{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件的模型更改时发出的事件。",params:"[unknown]",value:""}],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。"}],exposed:[]},Ne={name:"VTabsWindowItem",props:{disabled:{default:"false",value:"",type:"boolean",version:"",description:"Prevents the item from becoming active when using the “next” and “prev” buttons or the toggle method.",description_zh:"防止在使用 “next” 和 “prev” 按钮或 toggle 方法时项目变为活动状态。",required:!1},eager:{default:"false",value:"",type:"boolean",version:"",description:"Forces the component’s content to render when it mounts. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO.",description_zh:"强制组件的内容在挂载时呈现。如果您的内容不会在 DOM 中呈现，并且您希望为 SEO 抓取，这将非常有用。",required:!1},"reverse-transition":{default:"undefined",value:"",type:"string | boolean",version:"",description:"Sets the reverse transition.",description_zh:"设置反向过渡。",required:!1},"selected-class":{default:"undefined",value:"",type:"string",version:"",description:"Configure the active CSS class applied when an item is selected.",description_zh:"配置在选择项目时应用的活动 CSS 类。",required:!1},transition:{default:"undefined",value:"",type:"string | boolean",version:"",description:"The transition used when the component progressing through items. Can be one of the built in or custom transition.",description_zh:"组件在项中前进时使用的过渡。可以是内置或自定义过渡之一。",required:!1},value:{default:"undefined",value:"",type:"any",version:"",description:"The value used when the component is selected in a group. If not provided, a unique ID will be used.",description_zh:"在组中选择组件时使用的值。如果未提供，将使用唯一 ID。",required:!1}},link:"https://vuetifyjs.com/en/api/v-tabs-window-item/",link_zh:"https://vuetifyjs.com/en/api/v-tabs-window-item/",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。"}],exposed:[]},hi={name:"VTextarea",props:{active:{default:"false",value:"",type:"boolean",version:"",description:"Controls the active state of the item. This is typically used to highlight the component.",description_zh:"控制项的活动状态。这通常用于突出显示组件。",required:!1},"append-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Creates a v-icon component after default content in the append slot.",description_zh:"在附加插槽中的默认内容之后创建一个 v 图标组件。",required:!1},"append-inner-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Creates a v-icon component in the append-inner slot.",description_zh:"在 append-inner 插槽中创建 v-icon 组件。",required:!1},autofocus:{default:"false",value:"",type:"boolean",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},"auto-grow":{default:"false",value:"",type:"boolean",version:"",description:"Automatically grow the textarea depending on amount of text.",description_zh:"根据文本量自动增大 textarea。",required:!1},"base-color":{default:"undefined",value:"",type:"string",version:"",description:"Sets the color of the input when it is not focused.",description_zh:"设置输入未聚焦时的颜色。",required:!1},"bg-color":{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control’s background. Used on components that also support the color prop. - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件的背景。用于也支持 color 属性的组件。- 支持实用工具颜色（例如 Success 或 Purple）或 CSS 颜色（#033 或 RGBA（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},"center-affix":{default:"undefined",value:"",type:"boolean",version:"",description:"Vertically align appendInner, prependInner, clearIcon and label in the center.",description_zh:"将 appendInner、prependInner、clearIcon 和 label 垂直对齐在中心。",required:!1},clearable:{default:"false",value:"",type:"boolean",version:"",description:"Allows for the component to be cleared.",description_zh:"允许清除组件。",required:!1},"clear-icon":{default:"'$clear'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"The icon used when the clearable prop is set to true.",description_zh:"当 clearable prop 设置为 true 时使用的图标。",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},counter:{default:"false",value:"",type:"string | number | true",version:"",description:"Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation.",description_zh:"为 input length 创建 counter;如果未指定数字，则默认为 25。不应用任何验证。",required:!1},"counter-value":{default:"undefined",value:"",type:"(value: any) => number",version:"",description:"Display the input length but do not provide any validation.",description_zh:"显示输入长度，但不提供任何验证。",required:!1},density:{default:"'default'",value:"",type:"default / comfortable / compact",version:"",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。",required:!1},direction:{default:"'horizontal'",value:"",type:"horizontal / vertical",version:"",description:"Changes the direction of the input.",description_zh:"更改输入的方向。",required:!1},dirty:{default:"false",value:"",type:"boolean",version:"",description:"Manually apply the dirty state styling.",description_zh:"手动应用 dirty state 样式。",required:!1},disabled:{default:"null",value:"",type:"boolean",version:"",description:"Removes the ability to click or target the input.",description_zh:"删除单击或定位输入的功能。",required:!1},error:{default:"false",value:"",type:"boolean",version:"",description:"Puts the input in a manual error state.",description_zh:"将输入置于手动错误状态。",required:!1},"error-messages":{default:"[]",value:"",type:"string | string[]",version:"",description:"Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the rules prop. This field will not trigger validation.",description_zh:"将输入置于错误状态并传递自定义错误消息。将与 rules prop 发生的任何验证相结合。此字段不会触发验证。",required:!1},flat:{default:"false",value:"",type:"boolean",version:"",description:"Removes box shadow when using a variant with elevation.",description_zh:"使用具有高程的变量时删除框阴影。",required:!1},focused:{default:"false",value:"",type:"boolean",version:"",description:"Forces a focused state styling on the component.",description_zh:"强制对组件进行 focused state 样式设置。",required:!1},"hide-details":{default:"false",value:"",type:"boolean / auto",version:"",description:"Hides hint and validation errors. When set to auto messages will be rendered only if there’s a message (hint, error message, counter value etc) to display.",description_zh:"隐藏提示和验证错误。当设置为 auto 时，仅当有消息 （提示、错误消息、计数器值等） 要显示时，才会呈现消息。",required:!1},"hide-spin-buttons":{default:"false",value:"",type:"boolean",version:"",description:"Hides spin buttons on the input when type is set to number.",description_zh:"当 type 设置为 number 时，隐藏输入上的旋转按钮。",required:!1},hint:{default:"undefined",value:"",type:"string",version:"",description:"Displays hint text below the input when focused. Force this always open with the persistent-hint property.",description_zh:"聚焦时，在输入下方显示提示文本。使用 persistent-hint 属性强制 this always 打开。",required:!1},id:{default:"undefined",value:"",type:"string",version:"",description:"Sets the DOM id on the component.",description_zh:"设置组件上的 DOM ID。",required:!1},label:{default:"undefined",value:"",type:"string",version:"",description:"Sets the text of the v-label or v-field-label component.",description_zh:"设置 v-label 或 v-field-label 组件的文本。",required:!0},loading:{default:"false",value:"",type:"string | boolean",version:"",description:"Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - primary, secondary, success, info, warning, error) or a Boolean which uses the component color (set by color prop - if it’s supported by the component) or the primary color.",description_zh:"显示线性进度条。可以是指定应用于进度条的颜色的 String（任何材料颜色或主题颜色 - primary、secondary、success、info、warning、error），也可以是使用组件颜色（由 color 属性设置 - 如果组件支持）或主要颜色的 Boolean。",required:!1},"max-errors":{default:"1",value:"",type:"string | number",version:"",description:"Control the maximum number of shown errors from validation.",description_zh:"控制验证时显示的错误的最大数量。",required:!1},"max-rows":{default:"undefined",value:"",type:"string | number",version:"",description:"Specifies the maximum number of row count",description_zh:"指定最大行数",required:!1},"max-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。",required:!1},messages:{default:"[]",value:"",type:"string | string[]",version:"",description:"Displays a list of messages or a single message if using a string.",description_zh:"显示消息列表，如果使用字符串，则显示单个消息。",required:!1},"min-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum width for the component.",description_zh:"设置组件的最小宽度。",required:!1},"v-model":{default:"undefined",value:"",type:"any",version:"",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v-model 值。如果 component 支持 multiple prop，则默认为空数组。",required:!1},name:{default:"undefined",value:"",type:"string",version:"",description:"Sets the component’s name attribute.",description_zh:"设置组件的 name 属性。",required:!1},"no-resize":{default:"false",value:"",type:"boolean",version:"",description:"Remove resize handle.",description_zh:"移除调整大小控点。",required:!1},"persistent-clear":{default:"false",value:"",type:"boolean",version:"",description:"Always show the clearable icon when the input is dirty (By default it only shows on hover).",description_zh:"当输入脏时，始终显示可清除图标（默认情况下，它仅在悬停时显示）。",required:!1},"persistent-counter":{default:"false",value:"",type:"boolean",version:"",description:"Forces counter to always be visible.",description_zh:"强制计数器始终可见。",required:!1},"persistent-hint":{default:"false",value:"",type:"boolean",version:"",description:"Forces hint to always be visible.",description_zh:"强制提示始终可见。",required:!1},"persistent-placeholder":{default:"false",value:"",type:"boolean",version:"",description:"Forces placeholder to always be visible.",description_zh:"强制占位符始终可见。",required:!1},placeholder:{default:"undefined",value:"",type:"string",version:"",description:"Sets the input’s placeholder text.",description_zh:"设置输入的占位符文本。",required:!1},prefix:{default:"undefined",value:"",type:"string",version:"",description:"Displays prefix text.",description_zh:"显示前缀文本。",required:!1},"prepend-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Prepends an icon to the component, uses the same syntax as v-icon.",description_zh:"在组件前面加上一个图标，使用与 v-icon 相同的语法。",required:!1},"prepend-inner-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Creates a v-icon component in the prepend-inner slot.",description_zh:"在 prepend-inner 插槽中创建一个 v-icon 组件。",required:!1},readonly:{default:"null",value:"",type:"boolean",version:"",description:"Puts input in readonly state.",description_zh:"将输入置于只读状态。",required:!1},reverse:{default:"false",value:"",type:"boolean",version:"",description:"Reverses the orientation.",description_zh:"反转方向。",required:!1},rounded:{default:"undefined",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. Find more information on available border radius classes on the Border Radius page.",description_zh:"指定应用于组件的 border-radius。这可以是 0、xs、sm、true、lg、xl、pill、circle 和 shaped。在 Border Radius 页面上查找有关可用边界半径类的更多信息。",required:!1},rows:{default:"5",value:"",type:"string | number",version:"",description:"Default row count.",description_zh:"默认行计数。",required:!1},rules:{default:"[]",value:"",type:"ValidationRule[]",version:"",description:"Accepts a mixed array of types function, boolean and string. Functions pass an input value as an argument and must return either true / false or a string containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) false or is a string.",description_zh:"接受 function、boolean 和 string 类型的混合数组。函数将输入值作为参数传递，并且必须返回 true / false 或包含错误消息的字符串。如果函数返回 （或数组中的任何值包含） false 或为字符串，则输入字段将进入错误状态。",required:!1},"single-line":{default:"false",value:"",type:"boolean",version:"",description:"Label does not move on focus/dirty.",description_zh:"标签在聚焦/脏污时不移动。",required:!1},suffix:{default:"undefined",value:"",type:"string",version:"",description:"Displays suffix text.",description_zh:"显示后缀文本。",required:!1},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},tile:{default:"false",value:"",type:"boolean",version:"",description:"Removes any applied border-radius from the component.",description_zh:"从组件中删除任何应用的 border-radius。",required:!1},"validate-on":{default:"undefined",value:"",type:" / blur / input / submit / invalid-input / blur lazy / input lazy / submit lazy / invalid-input lazy / blur eager / input eager / submit eager / invalid-input eager / lazy blur / lazy input / lazy submit / lazy invalid-input / eager blur / eager input / eager submit / eager invalid-input / lazy / eager",version:"",description:"Change what type of event triggers validation to run.",description_zh:"更改触发验证的事件类型以运行。",required:!1},"validation-value":{default:"undefined",value:"",type:"any",version:"",description:"The value used when applying validation rules.",description_zh:"应用验证规则时使用的值。",required:!1},variant:{default:"'filled'",value:"",type:" / underlined / outlined / filled / solo / solo-inverted / solo-filled / plain",version:"",description:"Applies a distinct style to the component.",description_zh:"将不同的样式应用于组件。",required:!1},width:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the width for the component.",description_zh:"设置组件的宽度。",required:!1}},link:"https://vuetifyjs.com/en/api/v-textarea/",link_zh:"https://vuetifyjs.com/en/api/v-textarea/",typeDetail:{},events:[{name:"click:append",description:"Emitted when append icon is clicked.",description_zh:"单击附加图标时发出。",params:"[MouseEvent]",value:""},{name:"click:appendInner",description:"Emitted when appended inner icon is clicked.",description_zh:"单击附加的内部图标时发出。",params:"[MouseEvent]",value:""},{name:"click:clear",description:"Emitted when clearable icon clicked.",description_zh:"单击可清除图标时发出。",params:"[MouseEvent]",value:""},{name:"click:control",description:"Emitted when the main input is clicked.",description_zh:"单击主输入时发出。",params:"[MouseEvent]",value:""},{name:"click:prepend",description:"Emitted when prepended icon is clicked.",description_zh:"单击前置图标时发出。",params:"[MouseEvent]",value:""},{name:"click:prependInner",description:"Emitted when prepended inner icon is clicked.",description_zh:"单击前置的内部图标时发出。",params:"[MouseEvent]",value:""},{name:"mousedown:control",description:"Event that is emitted when using mousedown on the main control area.",description_zh:"在主控制区域上使用 mousedown 时触发的事件。",params:"[MouseEvent]",value:""},{name:"update:focused",description:"Emitted when the input is focused or blurred",description_zh:"当输入聚焦或模糊时发出",params:"[boolean]",value:""},{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件的模型更改时发出的事件。",params:"[string]",value:""}],methods:[],slots:[{name:"append",description:"Adds an item inside the input and after input content.",description_zh:"在 input 内容内和 After input 内容中添加一个项目。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"append-inner",description:"Adds an item inside the input content.",description_zh:"在输入内容中添加项目。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n}"},{name:"clear",description:"Slot for custom clear icon (displayed when the clearable prop is equal to true).",description_zh:"自定义 clear 图标的插槽（当 clearable prop 等于 true 时显示）。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n} & { props: Record<string, any> }"},{name:"counter",description:"Slot for the input’s counter text.",description_zh:"输入的计数器文本的插槽。",params:"{ counter: string; max: string | number; value: string | number }"},{name:"details",description:"Slot for custom input details to modifying the display of messages.",description_zh:"用于修改消息显示的自定义输入详细信息的插槽。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"label",description:"The default slot of the v-label or v-field-label component.",description_zh:"v-label 或 v-field-label 组件的默认插槽。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n} & { label: string; props: Record<string, any> }"},{name:"loader",description:"Slot for custom loader (displayed when loading prop is equal to true).",description_zh:"自定义加载器的插槽（当加载 prop 等于 true 时显示）。",params:"{ color: string; isActive: boolean }"},{name:"message",description:"Slot used to customize the message content.",description_zh:"用于自定义消息内容的插槽。",params:"{ message: string }"},{name:"prepend",description:"Adds an item outside the input and before input content.",description_zh:"在输入内容之外和之前添加项目。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"prepend-inner",description:"Slot that is prepended to the input.",description_zh:"Slot 添加到输入的前缀。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n}"}],exposed:[{name:"errorMessages",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string[]"},{name:"isValid",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"reset",description:"Resets the input value.",description_zh:"Resets the input value.",detail:"() => Promise<void>"},{name:"resetValidation",description:"Resets validation of the input without modifying its value.",description_zh:"Resets validation of the input without modifying its value.",detail:"() => Promise<void>"},{name:"validate",description:"Validates the input’s value.",description_zh:"Validates the input’s value.",detail:"(silent: boolean) => Promise<string[]>"}]},mi={name:"VTextField",props:{active:{default:"false",value:"",type:"boolean",version:"",description:"Controls the active state of the item. This is typically used to highlight the component.",description_zh:"控制项的活动状态。这通常用于突出显示组件。",required:!1},"append-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Creates a v-icon component after default content in the append slot.",description_zh:"在附加插槽中的默认内容之后创建一个 v 图标组件。",required:!1},"append-inner-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Creates a v-icon component in the append-inner slot.",description_zh:"在 append-inner 插槽中创建 v-icon 组件。",required:!1},autofocus:{default:"false",value:"",type:"boolean",version:"",description:"Enables autofocus.",description_zh:"启用自动对焦。",required:!1},"base-color":{default:"undefined",value:"",type:"string",version:"",description:"Sets the color of the input when it is not focused.",description_zh:"设置输入未聚焦时的颜色。",required:!1},"bg-color":{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control’s background. Used on components that also support the color prop. - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件的背景。用于也支持 color 属性的组件。- 支持实用工具颜色（例如 Success 或 Purple）或 CSS 颜色（#033 或 RGBA（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},"center-affix":{default:"undefined",value:"",type:"boolean",version:"",description:"Vertically align appendInner, prependInner, clearIcon and label in the center.",description_zh:"将 appendInner、prependInner、clearIcon 和 label 垂直对齐在中心。",required:!1},clearable:{default:"false",value:"",type:"boolean",version:"",description:"Allows for the component to be cleared.",description_zh:"允许清除组件。",required:!1},"clear-icon":{default:"'$clear'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Applied when using clearable and the input is dirty.",description_zh:"使用 clearable 且 input 为 dirty 时应用。",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},counter:{default:"false",value:"",type:"string | number | boolean",version:"",description:"Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation.",description_zh:"为 input length 创建 counter;如果未指定数字，则默认为 25。不应用任何验证。",required:!1},"counter-value":{default:"undefined",value:"",type:"number | ((value: any) => number)",version:"",description:"Function returns the counter display text.",description_zh:"function 返回计数器显示文本。",required:!1},density:{default:"'default'",value:"",type:"default / comfortable / compact",version:"",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。",required:!1},direction:{default:"'horizontal'",value:"",type:"horizontal / vertical",version:"",description:"Changes the direction of the input.",description_zh:"更改输入的方向。",required:!1},dirty:{default:"false",value:"",type:"boolean",version:"",description:"Manually apply the dirty state styling.",description_zh:"手动应用 dirty state 样式。",required:!1},disabled:{default:"null",value:"",type:"boolean",version:"",description:"Removes the ability to click or target the input.",description_zh:"删除单击或定位输入的功能。",required:!1},error:{default:"false",value:"",type:"boolean",version:"",description:"Puts the input in a manual error state.",description_zh:"将输入置于手动错误状态。",required:!1},"error-messages":{default:"[]",value:"",type:"string | string[]",version:"",description:"Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the rules prop. This field will not trigger validation.",description_zh:"将输入置于错误状态并传递自定义错误消息。将与 rules prop 发生的任何验证相结合。此字段不会触发验证。",required:!1},flat:{default:"false",value:"",type:"boolean",version:"",description:"Removes elevation (shadow) added to element when using the solo or solo-inverted props.",description_zh:"删除在使用 solo 或 solo 反转 props 时添加到元素的标高（阴影）。",required:!1},focused:{default:"false",value:"",type:"boolean",version:"",description:"Forces a focused state styling on the component.",description_zh:"强制对组件进行 focused state 样式设置。",required:!1},"hide-details":{default:"false",value:"",type:"boolean / auto",version:"",description:"Hides hint and validation errors. When set to auto messages will be rendered only if there’s a message (hint, error message, counter value etc) to display.",description_zh:"隐藏提示和验证错误。当设置为 auto 时，仅当有消息 （提示、错误消息、计数器值等） 要显示时，才会呈现消息。",required:!1},"hide-spin-buttons":{default:"false",value:"",type:"boolean",version:"",description:"Hides spin buttons on the input when type is set to number.",description_zh:"当 type 设置为 number 时，隐藏输入上的旋转按钮。",required:!1},hint:{default:"undefined",value:"",type:"string",version:"",description:"Displays hint text below the input when focused. Force this always open with the persistent-hint property.",description_zh:"聚焦时，在输入下方显示提示文本。使用 persistent-hint 属性强制 this always 打开。",required:!1},id:{default:"undefined",value:"",type:"string",version:"",description:"Sets the DOM id on the component.",description_zh:"设置组件上的 DOM ID。",required:!1},label:{default:"undefined",value:"",type:"string",version:"",description:"Sets the text of the v-label or v-field-label component.",description_zh:"设置 v-label 或 v-field-label 组件的文本。",required:!0},loading:{default:"false",value:"",type:"string | boolean",version:"",description:"Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - primary, secondary, success, info, warning, error) or a Boolean which uses the component color (set by color prop - if it’s supported by the component) or the primary color.",description_zh:"显示线性进度条。可以是指定应用于进度条的颜色的 String（任何材料颜色或主题颜色 - primary、secondary、success、info、warning、error），也可以是使用组件颜色（由 color 属性设置 - 如果组件支持）或主要颜色的 Boolean。",required:!1},"max-errors":{default:"1",value:"",type:"string | number",version:"",description:"Control the maximum number of shown errors from validation.",description_zh:"控制验证时显示的错误的最大数量。",required:!1},"max-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。",required:!1},messages:{default:"[]",value:"",type:"string | string[]",version:"",description:"Displays a list of messages or a single message if using a string.",description_zh:"显示消息列表，如果使用字符串，则显示单个消息。",required:!1},"min-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum width for the component.",description_zh:"设置组件的最小宽度。",required:!1},"v-model":{default:"undefined",value:"",type:"any",version:"",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v-model 值。如果 component 支持 multiple prop，则默认为空数组。",required:!1},name:{default:"undefined",value:"",type:"string",version:"",description:"Sets the component’s name attribute.",description_zh:"设置组件的 name 属性。",required:!1},"persistent-clear":{default:"false",value:"",type:"boolean",version:"",description:"Always show the clearable icon when the input is dirty (By default it only shows on hover).",description_zh:"当输入脏时，始终显示可清除图标（默认情况下，它仅在悬停时显示）。",required:!1},"persistent-counter":{default:"false",value:"",type:"boolean",version:"",description:"Forces counter to always be visible.",description_zh:"强制计数器始终可见。",required:!1},"persistent-hint":{default:"false",value:"",type:"boolean",version:"",description:"Forces hint to always be visible.",description_zh:"强制提示始终可见。",required:!1},"persistent-placeholder":{default:"false",value:"",type:"boolean",version:"",description:"Forces placeholder to always be visible.",description_zh:"强制占位符始终可见。",required:!1},placeholder:{default:"undefined",value:"",type:"string",version:"",description:"Sets the input’s placeholder text.",description_zh:"设置输入的占位符文本。",required:!1},prefix:{default:"undefined",value:"",type:"string",version:"",description:"Displays prefix text.",description_zh:"显示前缀文本。",required:!1},"prepend-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Prepends an icon to the outnside the component’s input, uses the same syntax as v-icon.",description_zh:"在组件输入的外部预置一个图标，使用与 v-icon 相同的语法。",required:!1},"prepend-inner-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Prepends an icon inside the component’s input, uses the same syntax as v-icon.",description_zh:"在组件的输入中预置一个图标，使用与 v-icon 相同的语法。",required:!1},readonly:{default:"null",value:"",type:"boolean",version:"",description:"Puts input in readonly state.",description_zh:"将输入置于只读状态。",required:!1},reverse:{default:"false",value:"",type:"boolean",version:"",description:"Reverses the input orientation.",description_zh:"反转输入方向。",required:!1},role:{default:"undefined",value:"",type:"string",version:"",description:"The role attribute applied to the input.",description_zh:"应用于输入的 role 属性。",required:!1},rounded:{default:"undefined",value:"",type:"string | number | boolean",version:"",description:"Adds a border radius to the input.",description_zh:"向输入添加边框半径。",required:!1},rules:{default:"[]",value:"",type:"ValidationRule[]",version:"",description:"Accepts a mixed array of types function, boolean and string. Functions pass an input value as an argument and must return either true / false or a string containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) false or is a string.",description_zh:"接受 function、boolean 和 string 类型的混合数组。函数将输入值作为参数传递，并且必须返回 true / false 或包含错误消息的字符串。如果函数返回 （或数组中的任何值包含） false 或为字符串，则输入字段将进入错误状态。",required:!1},"single-line":{default:"false",value:"",type:"boolean",version:"",description:"Label does not move on focus/dirty.",description_zh:"标签在聚焦/脏污时不移动。",required:!1},suffix:{default:"undefined",value:"",type:"string",version:"",description:"Displays suffix text.",description_zh:"显示后缀文本。",required:!1},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},tile:{default:"false",value:"",type:"boolean",version:"",description:"Removes any applied border-radius from the component.",description_zh:"从组件中删除任何应用的 border-radius。",required:!1},type:{default:"'text'",value:"",type:"string",version:"",description:"Sets input type.",description_zh:"设置输入类型。",required:!1},"validate-on":{default:"undefined",value:"",type:" / blur / input / submit / invalid-input / blur lazy / input lazy / submit lazy / invalid-input lazy / blur eager / input eager / submit eager / invalid-input eager / lazy blur / lazy input / lazy submit / lazy invalid-input / eager blur / eager input / eager submit / eager invalid-input / lazy / eager",version:"",description:"Change what type of event triggers validation to run.",description_zh:"更改触发验证的事件类型以运行。",required:!1},"validation-value":{default:"undefined",value:"",type:"any",version:"",description:"The value used when applying validation rules.",description_zh:"应用验证规则时使用的值。",required:!1},variant:{default:"'filled'",value:"",type:" / underlined / outlined / filled / solo / solo-inverted / solo-filled / plain",version:"",description:"Applies a distinct style to the component.",description_zh:"将不同的样式应用于组件。",required:!1},width:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the width for the component.",description_zh:"设置组件的宽度。",required:!1}},link:"https://vuetifyjs.com/en/api/v-text-field/",link_zh:"https://vuetifyjs.com/en/api/v-text-field/",typeDetail:{},events:[{name:"click:append",description:"Emitted when append icon is clicked.",description_zh:"单击附加图标时发出。",params:"[MouseEvent]",value:""},{name:"click:appendInner",description:"Emitted when appended inner icon is clicked.",description_zh:"单击附加的内部图标时发出。",params:"[MouseEvent]",value:""},{name:"click:clear",description:"Emitted when clearable icon clicked.",description_zh:"单击可清除图标时发出。",params:"[MouseEvent]",value:""},{name:"click:control",description:"Emitted when the main input is clicked.",description_zh:"单击主输入时发出。",params:"[MouseEvent]",value:""},{name:"click:prepend",description:"Emitted when prepended icon is clicked.",description_zh:"单击前置图标时发出。",params:"[MouseEvent]",value:""},{name:"click:prependInner",description:"Emitted when prepended inner icon is clicked.",description_zh:"单击前置的内部图标时发出。",params:"[MouseEvent]",value:""},{name:"mousedown:control",description:"Event that is emitted when using mousedown on the main control area.",description_zh:"在主控制区域上使用 mousedown 时触发的事件。",params:"[MouseEvent]",value:""},{name:"update:focused",description:"Emitted when the input is focused or blurred",description_zh:"当输入聚焦或模糊时发出",params:"[boolean]",value:""},{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件的模型更改时发出的事件。",params:"[string]",value:""}],methods:[],slots:[{name:"append",description:"Adds an item inside the input and after input content.",description_zh:"在 input 内容内和 After input 内容中添加一个项目。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"append-inner",description:"Adds an item inside the input content.",description_zh:"在输入内容中添加项目。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n}"},{name:"clear",description:"Slot for custom clear icon (displayed when the clearable prop is equal to true).",description_zh:"自定义 clear 图标的插槽（当 clearable prop 等于 true 时显示）。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n} & { props: Record<string, any> }"},{name:"counter",description:"Slot for the input’s counter text.",description_zh:"输入的计数器文本的插槽。",params:"{ counter: string; max: string | number; value: string | number }"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:""},{name:"details",description:"Slot for custom input details to modifying the display of messages.",description_zh:"用于修改消息显示的自定义输入详细信息的插槽。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"label",description:"The default slot of the v-label or v-field-label component.",description_zh:"v-label 或 v-field-label 组件的默认插槽。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n} & { label: string; props: Record<string, any> }"},{name:"loader",description:"Slot for custom loader (displayed when loading prop is equal to true).",description_zh:"自定义加载器的插槽（当加载 prop 等于 true 时显示）。",params:"{ color: string; isActive: boolean }"},{name:"message",description:"Slot used to customize the message content.",description_zh:"用于自定义消息内容的插槽。",params:"{ message: string }"},{name:"prepend",description:"Adds an item outside the input and before input content.",description_zh:"在输入内容之外和之前添加项目。",params:"{\n  id: ComputedRef<string>\n  messagesId: ComputedRef<string>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: Ref<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: Ref<boolean>\n  reset: () => void\n  resetValidation: () => void\n  validate: () => void\n}"},{name:"prepend-inner",description:"Slot that is prepended to the input.",description_zh:"Slot 添加到输入的前缀。",params:"{\n  isActive: Ref<boolean>\n  isFocused: Ref<boolean>\n  controlRef: Ref<HTMLElement | undefined>\n  focus: () => void\n  blur: () => void\n}"}],exposed:[{name:"controlRef",description:"Reference to the control element of the field.",description_zh:"Reference to the control element of the field.",detail:"HTMLElement"},{name:"errorMessages",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"string[]"},{name:"isValid",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"boolean"},{name:"reset",description:"Resets the input value.",description_zh:"Resets the input value.",detail:"() => Promise<void>"},{name:"resetValidation",description:"Resets validation of the input without modifying its value.",description_zh:"Resets validation of the input without modifying its value.",detail:"() => Promise<void>"},{name:"validate",description:"Validates the input’s value.",description_zh:"Validates the input’s value.",detail:"(silent: boolean) => Promise<string[]>"}]},fi={name:"VThemeProvider",props:{tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!0},"with-background":{default:"false",value:"",type:"boolean",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述 （在 github 中编辑）"}},link:"https://vuetifyjs.com/zh-Hans/api/v-theme-provider/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-theme-provider/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"All child components will have their theme overridden. Must have exactly one root element.",description_zh:"所有子组件的主题都将被覆盖。必须只有一个根元素。"}]},vi={name:"VTimeline",props:{align:{default:"center",value:"",type:"center / start",description:"Places the timeline dot at the top or center of the timeline item.",description_zh:"将时间轴点放在时间轴项的顶部或中心。"},density:{default:"default",value:"",type:"default / comfortable / compact",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。"},direction:{default:"vertical",value:"",type:"vertical / horizontal",description:"Display timeline in a vertical or horizontal direction.",description_zh:"在垂直或水平方向上显示时间轴。"},justify:{default:"auto",value:"",type:"string",description:"Places timeline line at the center or automatically on the left or right side.",description_zh:"将时间轴线置于中心，或自动置于左侧或右侧。"},"line-color":{default:"undefined",value:"",type:"string",description:"Color of the timeline line.",description_zh:"时间轴线的颜色。"},"line-inset":{default:"0",value:"",type:"string | number",description:"Specifies the distance between the line and the dot of timeline items.",description_zh:"指定时间线项的线点和点之间的距离。"},"line-thickness":{default:"2",value:"",type:"string | number",description:"Thickness of the timeline line.",description_zh:"时间轴线的粗细。"},side:{default:"undefined",value:"",type:"start / end",description:"Display all timeline items on one side of the timeline, either before or after.",description_zh:"在时间轴的一侧显示所有时间轴项，无论是在时间轴之前还是之后。"},tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"},theme:{default:"undefined",value:"",type:"string",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。"},"truncate-line":{default:"undefined",value:"",type:"start / end / both",description:"Truncate timeline directly at the start or end of the line, or on both ends.",description_zh:"直接在行的开头或结尾或两端截断时间线。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-timeline/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-timeline/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}],suggestions:["v-timeline-item"]},bi={name:"VTimelineItem",props:{density:{default:"undefined",value:"",type:"default / compact",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。"},"dot-color":{default:"undefined",value:"",type:"string",description:"Color of the item dot.",description_zh:"项目点的颜色。"},elevation:{default:"undefined",value:"",type:"string | number",description:"The elevation of the component is acceptable from 0 to 24. You can read more on the Elevation page.",description_zh:"组件的海拔可接受 0 到 24 之间的值。你可以在 elevation page 浏览更多信息。"},"fill-dot":{default:"false",value:"",type:"boolean",description:"Remove outer border of item dot, making the color fill the entire dot.",description_zh:"去除项目点的外边框，使颜色填充整个点。"},height:{default:"undefined",value:"",type:"string | number",description:"Sets the height of the component.",description_zh:"设定组件的高度。"},"hide-dot":{default:"false",value:"",type:"boolean",description:"Hide the timeline item dot.",description_zh:"隐藏时间线项点。"},"hide-opposite":{default:"undefined",value:"",type:"boolean",description:"Hide opposite content if it exists.",description_zh:"如果存在相反的内容，请隐藏它。"},icon:{default:"undefined",value:"",type:"any",description:"Apply a specific icon to the inside dot using the v-icon component.",description_zh:"使用 v-icon 组件将特定图标应用于内点。"},"icon-color":{default:"undefined",value:"",type:"string",description:"Color of the icon.",description_zh:"图标的颜色。"},"line-inset":{default:"undefined",value:"",type:"string | number",description:"Specifies the distance between the line and the dot of the item.",description_zh:"指定项的线和点之间的距离。"},"max-height":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum height of the component.",description_zh:"设定组件的最大高度。"},"max-width":{default:"undefined",value:"",type:"string | number",description:"Sets the maximum width of the component.",description_zh:"设定组件的最大宽度。"},"min-height":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum height of the component.",description_zh:"设定组件的最小高度。"},"min-width":{default:"undefined",value:"",type:"string | number",description:"Sets the minimum width of the component.",description_zh:"设定组件的最小宽度。"},rounded:{default:"undefined",value:"",type:"string | number | boolean",description:"Applies the border-radius style to the specified component. You can get more information about this on the Corner Radius of Borders page",description_zh:"对指定的组件应用 border-radius 样式。您可以在 边框的圆角半径页面 获取更多有关信息"},size:{default:"default",value:"",type:"string | number",description:"Size of the item dot",description_zh:"项目点的大小"},tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"},width:{default:"undefined",value:"",type:"string | number",description:"Sets the width of the component.",description_zh:"设定组件的宽度。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-timeline-item/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-timeline-item/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"},{name:"icon",description:"Used to customize the icon inside the item dot.",description_zh:"用于自定义项目点内的图标。"},{name:"opposite",description:"Used to customize the opposite side of timeline items.",description_zh:"用于自定义时间线项的另一侧。"}]},Ce={name:"VTimePicker",props:{"allowed-hours":{default:"undefined",value:"",type:"((val: number) => boolean) | number[]",version:"",description:"Restricts which hours can be selected.",description_zh:"限制可以选择的时间。",required:!1},"allowed-minutes":{default:"undefined",value:"",type:"((val: number) => boolean) | number[]",version:"",description:"Restricts which minutes can be selected.",description_zh:"限制可以选择的分钟数。",required:!1},"allowed-seconds":{default:"undefined",value:"",type:"((val: number) => boolean) | number[]",version:"",description:"Restricts which seconds can be selected.",description_zh:"限制可以选择的秒数。",required:!1},"ampm-in-title":{default:"false",value:"",type:"boolean",version:"",description:"Place AM/PM switch in title, not near the clock.",description_zh:"将 AM/PM 开关放在标题中，而不是靠近时钟。",required:!1},"bg-color":{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control’s background. Used on components that also support the color prop. - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件的背景。用于也支持 color 属性的组件。- 支持实用工具颜色（例如 Success 或 Purple）或 CSS 颜色（#033 或 RGBA（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},border:{default:"false",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be xs, sm, md, lg, xl.",description_zh:"指定应用于组件的 border-radius。这可以是 xs、sm、md、lg、xl。",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},disabled:{default:"false",value:"",type:"boolean",version:"",description:"Removes the ability to click or target the component.",description_zh:"删除单击组件或定位组件的功能。",required:!1},elevation:{default:"undefined",value:"",type:"string | number",version:"",description:"Designates an elevation applied to the component between 0 and 24. You can find more information on the elevation page.",description_zh:"指定应用于组件的 0 到 24 之间的高程。您可以在海拔页面上找到更多信息。",required:!1},format:{default:"'ampm'",value:"",type:"ampm / 24hr",version:"",description:"Defines the format of a time displayed in picker. Available options are ampm and 24hr.",description_zh:"定义选取器中显示的时间格式。可用选项为 ampm 和 24hr。",required:!1},height:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the height for the component.",description_zh:"设置组件的高度。",required:!1},"hide-header":{default:"false",value:"",type:"boolean",version:"",description:"Hide the picker header.",description_zh:"隐藏选取器标题。",required:!1},location:{default:"undefined",value:"",type:"Anchor",version:"",description:"Specifies the component’s location. Can combine by using a space separated string.",description_zh:"指定组件的位置。可以使用空格分隔的字符串进行组合。",required:!1},max:{default:"undefined",value:"",type:"string",version:"",description:"Maximum allowed time.",description_zh:"最大允许时间。",required:!1},"max-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum height for the component.",description_zh:"设置组件的最大高度。",required:!1},"max-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。",required:!1},min:{default:"undefined",value:"",type:"string",version:"",description:"Minimum allowed time.",description_zh:"允许的最短时间。",required:!1},"min-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum height for the component.",description_zh:"设置组件的最小高度。",required:!1},"min-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum width for the component.",description_zh:"设置组件的最小宽度。",required:!1},"v-model":{default:"undefined",value:"",type:"any",version:"",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v-model 值。如果 component 支持 multiple prop，则默认为空数组。",required:!1},position:{default:"undefined",value:"",type:"static / relative / fixed / absolute / sticky",version:"",description:"Sets the position for the component.",description_zh:"设置零部件的位置。",required:!1},readonly:{default:"false",value:"",type:"boolean",version:"",description:"Puts picker in readonly state.",description_zh:"将选取器置于只读状态。",required:!1},rounded:{default:"undefined",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. Find more information on available border radius classes on the Border Radius page.",description_zh:"指定应用于组件的 border-radius。这可以是 0、xs、sm、true、lg、xl、pill、circle 和 shaped。在 Border Radius 页面上查找有关可用边界半径类的更多信息。",required:!1},scrollable:{default:"false",value:"",type:"boolean",version:"",description:"Allows changing hour/minute with mouse scroll.",description_zh:"允许通过鼠标滚动更改小时/分钟。",required:!1},tag:{default:"'div'",value:"",type:"string",version:"",description:"Specify a custom tag used on the root element.",description_zh:"指定根元素上使用的自定义标记。",required:!1},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},tile:{default:"false",value:"",type:"boolean",version:"",description:"Removes any applied border-radius from the component.",description_zh:"从组件中删除任何应用的 border-radius。",required:!1},title:{default:"'$vuetify.timePicker.title'",value:"",type:"string",version:"",description:"Specify a title text for the component.",description_zh:"指定组件的标题文本。",required:!1},"use-seconds":{default:"false",value:"",type:"boolean",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},width:{default:"undefined",value:"",type:"string | number",version:"",description:"Width of the picker.",description_zh:"选取器的宽度。",required:!1}},link:"https://vuetifyjs.com/en/api/v-time-picker/",link_zh:"https://vuetifyjs.com/en/api/v-time-picker/",typeDetail:{},events:[{name:"update:hour",description:"Emitted when user selects the hour.",description_zh:"当用户选择小时时发出。",params:"[number]",value:""},{name:"update:minute",description:"Emitted when user selects the minute.",description_zh:"当用户选择分钟时发出。",params:"[number]",value:""},{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件的模型更改时发出的事件。",params:"[string]",value:""},{name:"update:period",description:"Emitted when user clicks the AM/PM button.",description_zh:"当用户单击 AM/PM 按钮时发出。",params:"['am' | 'pm']",value:""},{name:"update:second",description:"Emitted when user selects the second.",description_zh:"当用户选择第二个时触发。",params:"[number]",value:""}],methods:[],slots:[{name:"actions",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）"},{name:"default",description:"Displayed below the clock, can be used for example for adding action button (OK and Cancel)/",description_zh:"显示在时钟下方，可用于添加操作按钮（OK 和 Cancel）/"},{name:"title",description:"Slot for the component’s title content.",description_zh:"组件标题内容的插槽。"}],exposed:[]},De={name:"VTimePickerClock",props:{"allowed-values":{default:"undefined",value:"",type:"(value: number) => boolean",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},ampm:{default:"false",value:"",type:"boolean",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},disabled:{default:"false",value:"",type:"boolean",version:"",description:"Removes the ability to click or target the component.",description_zh:"删除单击组件或定位组件的功能。",required:!1},"displayed-value":{default:"undefined",value:"",type:"any",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},double:{default:"false",value:"",type:"boolean",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},format:{default:"undefined",value:"",type:"Function",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},":max":{default:"undefined",value:"",type:"number",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},":min":{default:"undefined",value:"",type:"number",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},":model-value":{default:"undefined",value:"",type:"number",version:"",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v-model 值。如果 component 支持 multiple prop，则默认为空数组。",required:!1},readonly:{default:"false",value:"",type:"boolean",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},":rotate":{default:"0",value:"",type:"number",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},scrollable:{default:"false",value:"",type:"boolean",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},":step":{default:"1",value:"",type:"number",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1}},link:"https://vuetifyjs.com/en/api/v-time-picker-clock/",link_zh:"https://vuetifyjs.com/en/api/v-time-picker-clock/",typeDetail:{},events:[{name:"change",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"[number]",value:""},{name:"input",description:"The updated bound model.",description_zh:"更新的绑定模型。",params:"[number]",value:""}],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。"}],exposed:[]},ke={name:"VTimePickerControls",props:{ampm:{default:"false",value:"",type:"boolean",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},"ampm-in-title":{default:"false",value:"",type:"boolean",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},"ampm-readonly":{default:"false",value:"",type:"boolean",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},disabled:{default:"false",value:"",type:"boolean",version:"",description:"Removes the ability to click or target the component.",description_zh:"删除单击组件或定位组件的功能。",required:!1},":hour":{default:"undefined",value:"",type:"number",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},":minute":{default:"undefined",value:"",type:"number",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},period:{default:"undefined",value:"",type:"string",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},readonly:{default:"false",value:"",type:"boolean",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},":second":{default:"undefined",value:"",type:"number",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},":selecting":{default:"undefined",value:"",type:"number",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},"use-seconds":{default:"false",value:"",type:"boolean",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},":value":{default:"undefined",value:"",type:"number",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1}},link:"https://vuetifyjs.com/en/api/v-time-picker-controls/",link_zh:"https://vuetifyjs.com/en/api/v-time-picker-controls/",typeDetail:{},events:[{name:"update:period",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"['am' | 'pm']",value:""},{name:"update:selecting",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"[1 | 2 | 3]",value:""}],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。"}],exposed:[]},gi={name:"VToolbar",props:{absolute:{default:"false",value:"",type:"boolean",version:"",description:"Applies position: absolute to the component.",description_zh:"将 position： absolute 应用于组件。",required:!1},border:{default:"false",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be xs, sm, md, lg, xl.",description_zh:"指定应用于组件的 border-radius。这可以是 xs、sm、md、lg、xl。",required:!1},collapse:{default:"false",value:"",type:"boolean",version:"",description:"Puts the toolbar into a collapsed state reducing its maximum width.",description_zh:"将工具栏置于折叠状态，从而减少其最大宽度。",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},density:{default:"'default'",value:"",type:"default / prominent / comfortable / compact",version:"",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。",required:!1},elevation:{default:"undefined",value:"",type:"string | number",version:"",description:"Designates an elevation applied to the component between 0 and 24. You can find more information on the elevation page.",description_zh:"指定应用于组件的 0 到 24 之间的高程。您可以在海拔页面上找到更多信息。",required:!1},extended:{default:"false",value:"",type:"boolean",version:"",description:"Use this prop to increase the height of the toolbar without using the extension slot for adding content. May be used in conjunction with the extension-height prop, and any of the other props that affect the height of the toolbar, e.g. prominent, dense, etc., WITH THE EXCEPTION of height.",description_zh:"使用此 prop 来增加工具栏的高度，而无需使用扩展槽来添加内容。可以与 extension-height 属性以及任何其他影响工具栏高度的 props 结合使用，例如 prominent、denset 等，但 height 除外。",required:!1},"extension-height":{default:"48",value:"",type:"string | number",version:"",description:"Specify an explicit height for the extension slot.",description_zh:"指定扩展槽的显式高度。",required:!1},flat:{default:"false",value:"",type:"boolean",version:"",description:"Removes the toolbar’s box-shadow.",description_zh:"删除工具栏的 box-shadow。",required:!1},floating:{default:"false",value:"",type:"boolean",version:"",description:"Applies display: inline-flex to the component.",description_zh:"将 display： inline-flex 应用于组件。",required:!1},height:{default:"64",value:"",type:"string | number",version:"",description:"Designates a specific height for the toolbar. Overrides the heights imposed by other props, e.g. prominent, dense, extended, etc.",description_zh:"指定工具栏的特定高度。覆盖其他 props 施加的高度，例如 prominent、dense、extended 等。",required:!1},image:{default:"undefined",value:"",type:"string",version:"",description:"Specifies a v-img as the component’s background.",description_zh:"指定 v-img 作为组件的背景。",required:!1},rounded:{default:"undefined",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. Find more information on available border radius classes on the Border Radius page.",description_zh:"指定应用于组件的 border-radius。这可以是 0、xs、sm、true、lg、xl、pill、circle 和 shaped。在 Border Radius 页面上查找有关可用边界半径类的更多信息。",required:!1},tag:{default:"'header'",value:"",type:"string",version:"",description:"Specify a custom tag used on the root element.",description_zh:"指定根元素上使用的自定义标记。",required:!1},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},tile:{default:"false",value:"",type:"boolean",version:"",description:"Removes any applied border-radius from the component.",description_zh:"从组件中删除任何应用的 border-radius。",required:!1},title:{default:"undefined",value:"",type:"string",version:"",description:"Specify a title text for the component.",description_zh:"指定组件的标题文本。",required:!0}},link:"https://vuetifyjs.com/en/api/v-toolbar/",link_zh:"https://vuetifyjs.com/en/api/v-toolbar/",typeDetail:{},events:[],methods:[],slots:[{name:"append",description:"Adds an item inside the input and after input content.",description_zh:"在 input 内容内和 After input 内容中添加一个项目。"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。"},{name:"extension",description:"Slot positioned directly under the main content of the toolbar. Height of this slot can be set explicitly with the extension-height prop. If this slot has no content, the extended prop may be used instead.",description_zh:"插槽位于工具栏的主要内容正下方。这个插槽的高度可以通过 extension-height 属性显式设置。如果此插槽没有内容，则可以使用 extended prop 代替。"},{name:"image",description:'Expects the v-img component. Scoped props should be applied with v-bind="props".',description_zh:"需要 v-img 组件。作用域的 props 应该使用 v-bind=“props” 来应用。"},{name:"prepend",description:"Adds an item outside the input and before input content.",description_zh:"在输入内容之外和之前添加项目。"},{name:"title",description:"Slot for the component’s title content.",description_zh:"组件标题内容的插槽。"}],exposed:[{name:"contentHeight",description:"The current height of the component’s content.",description_zh:"The current height of the component’s content.",detail:"number"},{name:"extensionHeight",description:"The current height of the component’s extension slot.",description_zh:"The current height of the component’s extension slot.",detail:"number"}],suggestions:["v-toolbar-items","v-toolbar-title","v-btn"]},yi={name:"VToolbarItems",props:{color:{default:"undefined",value:"",type:"string",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用程序颜色（例如成功或紫色）或 css 颜色（例如成功或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在颜色页面上查找内置类的列表。"},variant:{default:"text",value:"",type:"flat / elevated / tonal / outlined / text / plain",description:"Applies a distinct style to the component.",description_zh:"对组件应用不同的样式。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-toolbar-items/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-toolbar-items/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"}]},Ii={name:"VToolbarTitle",props:{tag:{default:"div",value:"",type:"string",description:"Specifies the custom tag to be used on the root element.",description_zh:"指定在根元素上使用的自定义标签。"},text:{default:"undefined",value:"",type:"string",description:"Sets the content text of the component.",description_zh:"设置组件的内容文本。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-toolbar-title/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-toolbar-title/#links",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default Vue slot.",description_zh:"默认Vue 插槽。"},{name:"text",description:"Slot for the component’s text content.",description_zh:"组件文本内容的插槽。"}]},Si={name:"VTooltip",props:{activator:{default:"undefined",value:"",type:"Element | 'parent' | (string & {}) | ComponentPublicInstance",version:"",description:"Explicitly sets the overlay’s activator.",description_zh:"显式设置叠加层的激活器。",required:!1},"activator-props":{default:"{}",value:"",type:"unknown",version:"",description:"Apply custom properties to the activator.",description_zh:"将自定义属性应用于激活器。",required:!1},attach:{default:"false",value:"",type:"string | boolean | Element",version:"",description:"Specifies which DOM element the overlay content should teleport to. Can be a direct element reference, querySelector string, or true to disable teleporting. Uses body by default.",description_zh:"指定覆盖内容应传送到哪个 DOM 元素。可以是直接元素引用、querySelector 字符串或 true，以禁用传送。默认使用 body。",required:!1},"close-delay":{default:"undefined",value:"",type:"string | number",version:"",description:"Delay (in ms) after which menu closes (when open-on-hover prop is set to true).",description_zh:"菜单关闭后的延迟（以毫秒为单位）（当 open-on-hover prop 设置为 true 时）。",required:!1},"close-on-back":{default:"false",value:"",type:"boolean",version:"",description:"Closes the overlay content when the browser’s back button is pressed or $router.back() is called, cancelling the original navigation. persistent overlays will cancel navigation and animate as if they were clicked outside instead of closing.",description_zh:"在按下浏览器的后退按钮或调用 $router.back（） 时关闭覆盖内容，从而取消原始导航。永久叠加将取消导航并制作动画，就像在外部单击而不是关闭一样。",required:!1},"close-on-content-click":{default:"false",value:"",type:"boolean",version:"",description:"Closes component when you click on its content.",description_zh:"单击组件内容时关闭组件。",required:!1},contained:{default:"false",value:"",type:"boolean",version:"",description:"Limits the size of the component and scrim to its offset parent. Implies absolute and attach. (Note: The parent element must have position: relative.).",description_zh:"将零部件和纱布的大小限制为其偏移父级。暗示 absolute 和 attach。（注意：父元素必须具有 position： relative。",required:!1},"content-class":{default:"undefined",value:"",type:"any",version:"",description:"Applies a custom class to the detached element. This is useful because the content is moved to the beginning of the v-app component (unless the attach prop is provided) and is not targetable by classes passed directly on the component.",description_zh:"将自定义类应用于分离的元素。这很有用，因为内容被移动到 v-app 组件的开头（除非提供了 attach 属性），并且不能被直接在组件上传递的类所定位。",required:!1},"content-props":{default:"undefined",value:"",type:"any",version:"",description:"Apply custom properties to the content.",description_zh:"将自定义属性应用于内容。",required:!1},disabled:{default:"false",value:"",type:"boolean",version:"",description:"Removes the ability to click or target the component.",description_zh:"删除单击组件或定位组件的功能。",required:!1},eager:{default:"true",value:"",type:"boolean",version:"v3.2.0",description:"Forces the component’s content to render when it mounts. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO.",description_zh:"强制组件的内容在挂载时呈现。如果您的内容不会在 DOM 中呈现，并且您希望为 SEO 抓取，这将非常有用。",required:!1},height:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the height for the component.",description_zh:"设置组件的高度。",required:!1},id:{default:"undefined",value:"",type:"string",version:"",description:"HTML id attribute of the tooltip overlay. If not set, a globally unique id will be used.",description_zh:"HTML id 属性。如果未设置，则将使用全局唯一 ID。",required:!1},location:{default:"'end'",value:"",type:"Anchor",version:"",description:"Specifies the anchor point for positioning the component, using directional cues to align it either horizontally, vertically, or both…",description_zh:"指定用于定位组件的锚点，使用方向提示将其水平对齐、垂直对齐或两者对齐......",required:!1},"location-strategy":{default:"'connected'",value:"",type:"static / connected / LocationStrategyFn",version:"",description:"A function used to specifies how the component should position relative to its activator.",description_zh:"用于指定组件相对于其激活器的位置的函数。",required:!1},"max-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum height for the component.",description_zh:"设置组件的最大高度。",required:!1},"max-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。",required:!1},"min-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum height for the component.",description_zh:"设置组件的最小高度。",required:!1},"min-width":{default:"0",value:"",type:"string | number",version:"",description:"Sets the minimum width for the component.",description_zh:"设置组件的最小宽度。",required:!1},"v-model":{default:"false",value:"",type:"boolean",version:"",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v-model 值。如果 component 支持 multiple prop，则默认为空数组。",required:!1},"no-click-animation":{default:"false",value:"",type:"boolean",version:"",description:"Disables the bounce effect when clicking outside of the content element when using the persistent prop.",description_zh:"在使用 persistent prop 时，在内容元素外部单击时禁用弹跳效果。",required:!1},offset:{default:"10",value:"",type:"string | number | number[]",version:"",description:"A single value that offsets content away from the target based upon what side it is on.",description_zh:"一个值，该值根据内容所在的一侧将内容从目标偏移。",required:!1},opacity:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the overlay opacity.",description_zh:"设置叠加不透明度。",required:!1},"open-delay":{default:"undefined",value:"",type:"string | number",version:"",description:"Delay (in ms) after which tooltip opens (when open-on-hover prop is set to true).",description_zh:"延迟（以毫秒为单位），在此之后，工具提示将打开（当 open-on-hover prop 设置为 true 时）。",required:!1},"open-on-click":{default:"false",value:"",type:"boolean",version:"",description:"Designates whether the tooltip should open on activator click.",description_zh:"指定是否应在激活器单击时打开工具提示。",required:!1},"open-on-focus":{default:"undefined",value:"",type:"boolean",version:"",description:"Activate the component when the activator is focused.",description_zh:"当激活器聚焦时激活组件。",required:!1},"open-on-hover":{default:"true",value:"",type:"boolean",version:"",description:"Designates whether the tooltip should open on activator hover.",description_zh:"指定工具提示是否应在激活器悬停时打开。",required:!1},origin:{default:"'auto'",value:"",type:"Anchor / auto / overlap",version:"",description:"Sets the transition origin on the element. You can find more information on the MDN documentation for transition origin.",description_zh:"设置元素上的过渡原点。您可以在 transition origin 的 MDN 文档上找到更多信息。",required:!1},scrim:{default:"false",value:"",type:"string | boolean",version:"",description:"Accepts true/false to enable background, and string to define color.",description_zh:"接受 true/false 以启用背景，接受 string 以定义颜色。",required:!1},"scroll-strategy":{default:"'reposition'",value:"",type:"none / close / block / reposition / ScrollStrategyFn",version:"",description:"Strategy used when the component is activate and user scrolls.",description_zh:"当组件处于 activate 状态且用户滚动时使用的策略。",required:!1},target:{default:"undefined",value:"",type:"  | Element  | 'parent'  | 'cursor'  | (string & {})  | ComponentPublicInstance  | [number, number]",version:"",description:"For locationStrategy=“connected”, specify an element or array of x,y coordinates that the overlay should position itself relative to. This will be the activator element by default.",description_zh:"对于 locationStrategy=“connected”，指定叠加层应相对于其定位自身的 x，y 坐标的元素或数组。默认情况下，这将是 activator 元素。",required:!1},text:{default:"undefined",value:"",type:"string",version:"",description:"Specify content text for the component.",description_zh:"指定组件的内容文本。",required:!0},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},transition:{default:"false",value:"",type:"string | boolean | (TransitionProps & { component: Component })",version:"",description:"Sets the component transition. Can be one of the built in or custom transition.",description_zh:"设置零部件过渡。可以是内置或自定义过渡之一。",required:!1},width:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the width for the component.",description_zh:"设置组件的宽度。",required:!1},"z-index":{default:"2000",value:"",type:"string | number",version:"",description:"The z-index used for the component.",description_zh:"用于组件的 z-index。",required:!1}},link:"https://vuetifyjs.com/en/api/v-tooltip/",link_zh:"https://vuetifyjs.com/en/api/v-tooltip/",typeDetail:{},events:[{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件的模型更改时发出的事件。",params:"[boolean]",value:""}],methods:[],slots:[{name:"activator",description:"When used, will activate the component when clicked (or hover for specific components). This manually stops the event propagation. Without this slot, if you open the component through its model, you will need to manually stop the event propagation.",description_zh:"使用时，将在单击时激活组件（或将鼠标悬停在特定组件上）。这将手动停止事件传播。如果没有此插槽，如果通过其模型打开组件，则需要手动停止事件传播。",params:"{\n  isActive: boolean\n  props: Record<string, any>\n  targetRef: TemplateRef\n}"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{ isActive: Ref<boolean> }"}],exposed:[{name:"activatorEl",description:"Ref to the current activator element.",description_zh:"Ref to the current activator element.",detail:"HTMLElement"},{name:"animateClick",description:"Function invoked when user clicks outside.",description_zh:"Function invoked when user clicks outside.",detail:"() => void"},{name:"contentEl",description:"Ref to the current content element.",description_zh:"Ref to the current content element.",detail:"HTMLElement"},{name:"globalTop",description:"Used by activator to determine a components position in the global stack order.",description_zh:"Used by activator to determine a components position in the global stack order.",detail:"boolean"},{name:"localTop",description:"Used by activator to determine a components position in the local stack order.",description_zh:"Used by activator to determine a components position in the local stack order.",detail:"boolean"},{name:"scrimEl",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"HTMLElement"},{name:"target",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"HTMLElement | [number, number]"},{name:"updateLocation",description:"Function used for locationStrategy positioning.",description_zh:"Function used for locationStrategy positioning.",detail:"(e: Event) => void"}]},xe={name:"VTreeview",props:{activatable:{default:"false",value:"",type:"boolean",version:"",description:"Allows user to mark a node as active by clicking on it.",description_zh:"允许用户通过单击节点将其标记为活动节点。",required:!1},activated:{default:"undefined",value:"",type:"any",version:"",description:"Array of ids of activated nodes.",description_zh:"已激活节点的 ID 数组。",required:!1},"active-class":{default:"undefined",value:"",type:"string",version:"",description:"The class applied to the component when it is in an active state.",description_zh:"当组件处于活动状态时应用于组件的类。",required:!1},"active-color":{default:"undefined",value:"",type:"string",version:"",description:"The applied color when the component is in an active state.",description_zh:"组件处于活动状态时应用的颜色。",required:!1},"active-strategy":{default:"undefined",value:"",type:"  | 'single-leaf'  | 'leaf'  | 'independent'  | 'single-independent'  | ActiveStrategy  | ((mandatory: boolean) => ActiveStrategy)",version:"",description:"Affects how items with children behave when activated.leaf: Only leaf nodes (items without children) can be activated.independent: All nodes can be activated whether they have children or not.classic: Activating a parent node will cause all children to be activated.",description_zh:"影响具有子项的项目在激活时的行为方式。leaf：只能激活叶节点（没有子项的项目）。independent：无论它们是否具有子节点，都可以激活所有节点。classic：激活父节点将导致激活所有子节点。",required:!1},"base-color":{default:"undefined",value:"",type:"string",version:"",description:"Sets the color of component when not focused.",description_zh:"设置未聚焦时组件的颜色。",required:!1},"bg-color":{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control’s background. Used on components that also support the color prop. - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件的背景。用于也支持 color 属性的组件。- 支持实用工具颜色（例如 Success 或 Purple）或 CSS 颜色（#033 或 RGBA（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},border:{default:"false",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be xs, sm, md, lg, xl.",description_zh:"指定应用于组件的 border-radius。这可以是 xs、sm、md、lg、xl。",required:!1},"collapse-icon":{default:"'$treeviewCollapse'",value:"",type:"string",version:"",description:"Icon to display when the list item is expanded.",description_zh:"展开列表项时显示的图标。",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the active node - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定颜色应用于活动节点 - 支持实用工具颜色（例如 success 或 purple）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},"custom-filter":{default:"undefined",value:"",type:"FilterFunction",version:"",description:"Function used to filter items, called for each filterable key on each item in the list. The first argument is the filterable value from the item, the second is the search term, and the third is the internal item object. The function should return true if the item should be included in the filtered list, or the index of the match in the value if it should be included with the result highlighted.",description_zh:"用于筛选项目的函数，为列表中每个项目上的每个可筛选键调用。第一个参数是项目中的可筛选值，第二个参数是搜索词，第三个参数是内部项目对象。如果项目应包含在筛选列表中，则该函数应返回 true，如果匹配项应包含在突出显示的结果中，则该值应返回匹配项的索引。",required:!1},"custom-key-filter":{default:"undefined",value:"",type:"unknown",version:"",description:"Function used on specific keys within the item object. customFilter is skipped for columns with customKeyFilter specified.",description_zh:"用于 item 对象中特定键的函数。对于指定了 customKeyFilter 的列，将跳过 customFilter。",required:!1},density:{default:"'default'",value:"",type:"default / comfortable / compact",version:"",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。",required:!1},disabled:{default:"false",value:"",type:"boolean",version:"",description:"Disables selection for all nodes.",description_zh:"禁用所有节点的选择。",required:!1},elevation:{default:"undefined",value:"",type:"string | number",version:"",description:"Designates an elevation applied to the component between 0 and 24. You can find more information on the elevation page.",description_zh:"指定应用于组件的 0 到 24 之间的高程。您可以在海拔页面上找到更多信息。",required:!1},"expand-icon":{default:"'$treeviewExpand'",value:"",type:"string",version:"",description:"Icon used to indicate that a node can be expanded.",description_zh:"图标，用于指示节点可以展开。",required:!1},"false-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},"filter-keys":{default:"['title']",value:"",type:"string | string[]",version:"",description:"Array of specific keys to filter on the item.",description_zh:"用于筛选项目的特定键的数组。",required:!1},"filter-mode":{default:"'intersection'",value:"",type:"some / every / union / intersection",version:"",description:"Controls how the results of customFilter and customKeyFilter are combined. All modes only apply customFilter to columns not specified in customKeyFilter.some: There is at least one match from either the custom filter or the custom key filter.every: All columns match either the custom filter or the custom key filter.union: There is at least one match from the custom filter, or all columns match the custom key filters.intersection: There is at least one match from the custom filter, and all columns match the custom key filters.",description_zh:"控制 customFilter 和 customKeyFilter 的结果的组合方式。所有模式仅将 customFilter 应用于 customKeyFilter.some：自定义筛选条件或自定义键至少有一个匹配项 filter.every：所有列都与自定义筛选条件或自定义键匹配 filter.union：自定义筛选条件中至少有一个匹配项，或者所有列都与自定义键 filters.intersection 匹配： 自定义筛选条件中至少有一个匹配项，并且所有列都与自定义键筛选条件匹配。",required:!1},height:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the height for the component.",description_zh:"设置组件的高度。",required:!1},"indeterminate-icon":{default:"'$checkboxIndeterminate'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Icon used when node is in an indeterminate state. Only visible when selectable is true.",description_zh:"节点处于不确定状态时使用的图标。Only visible when selectable 为 true。",required:!1},"item-children":{default:"'children'",value:"",type:"SelectItemKey",version:"",description:"Property on supplied items that contains its children.",description_zh:"包含其子项的 supplied items 上的属性。",required:!1},"item-props":{default:"'props'",value:"",type:"SelectItemKey",version:"",description:"Props object that will be applied to each item component. true will treat the original object as raw props and pass it directly to the component.",description_zh:"Props 对象。true 会将原始对象视为 raw props 并将其直接传递给组件。",required:!1},items:{default:"[]",value:"",type:"unknown[]",version:"",description:"An array of items used to build the treeview.",description_zh:"用于构建 treeview 的项数组。",required:!1},"item-title":{default:"'title'",value:"",type:"SelectItemKey",version:"",description:"Property on supplied items that contains its title.",description_zh:"包含其标题的所提供项上的属性。",required:!1},"item-value":{default:"'value'",value:"",type:"SelectItemKey",version:"",description:"Property on supplied items that contains its value.",description_zh:"包含其值的 supplied items 上的属性。",required:!1},lines:{default:"'one'",value:"",type:"false / one / two / three",version:"",description:"Designates a minimum-height for all children v-list-item components. This prop uses line-clamp and is not supported in all browsers.",description_zh:"为所有子 v-list-item 组件指定 minimum-height。这个 prop 使用 line-clamp，并不是所有浏览器都支持。",required:!1},"load-children":{default:"undefined",value:"",type:"(item: unknown) => Promise<void>",version:"",description:"A function used when dynamically loading children. If this prop is set, then the supplied function will be run if expanding an item that has a item-children property that is an empty array. Supports returning a Promise.",description_zh:"动态加载 children 时使用的函数。如果设置了此 prop，则如果展开具有空数组的 item-children 属性的项，则将运行提供的函数。支持返回 Promise。",required:!1},"loading-icon":{default:"'$loading'",value:"",type:"string",version:"",description:"Icon used when node is in a loading state.",description_zh:"节点处于加载状态时使用的图标。",required:!1},mandatory:{default:"false",value:"",type:"boolean",version:"",description:"Forces at least one item to always be selected (if available).",description_zh:"强制始终选择至少一个项目（如果可用）。",required:!1},"max-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum height for the component.",description_zh:"设置组件的最大高度。",required:!1},"max-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。",required:!1},"min-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum height for the component.",description_zh:"设置组件的最小高度。",required:!1},"min-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum width for the component.",description_zh:"设置组件的最小宽度。",required:!1},"v-model":{default:"[]",value:"",type:"unknown[]",version:"",description:"Allows one to control which nodes are selected. The array contains the values of currently selected items. It is equivalent to the v-model:selected",description_zh:"允许控制选择哪些节点。该数组包含当前所选项目的值。它相当于 v-model：selected",required:!1},"no-filter":{default:"false",value:"",type:"boolean",version:"",description:"Disables all item filtering.",description_zh:"禁用所有项目筛选。",required:!1},"open-all":{default:"false",value:"",type:"boolean",version:"",description:"When true will cause all branch nodes to be opened when component is mounted.",description_zh:"如果为 true，则会导致在挂载组件时打开所有分支节点。",required:!1},opened:{default:"undefined",value:"",type:"any",version:"",description:"An array containing the values of currently opened groups. Can be two-way bound with v-model:opened.",description_zh:"包含当前打开的组值的数组。可以用 v-model：opened 进行双向绑定。",required:!1},"open-on-click":{default:"undefined",value:"",type:"boolean",version:"",description:"When true will cause nodes to be opened by clicking anywhere on it, instead of only opening by clicking on expand icon. When using this prop with activatable you will be unable to mark nodes with children as active.",description_zh:"如果为 true，则可以通过单击节点上的任意位置来打开节点，而不仅仅是通过单击展开图标来打开节点。将此 prop 与 activatable 一起使用时，您将无法将带有 children 的节点标记为 active。",required:!1},"return-object":{default:"false",value:"",type:"boolean",version:"",description:"When true will make v-model, active.sync and open.sync return the complete object instead of just the key.",description_zh:"当 true 时，v-model 、 active.sync 和 open.sync 将返回完整的对象，而不仅仅是 key。",required:!1},rounded:{default:"undefined",value:"",type:"string | number | boolean",version:"",description:"Provides an alternative active style for v-treeview node. Only visible when activatable is true and should not be used in conjunction with the shaped prop.",description_zh:"为 v-treeview 节点提供替代活动样式。Only visible when activatable 为 true，不应与 shaped 属性一起使用。",required:!1},search:{default:"undefined",value:"",type:"string",version:"",description:"The search model for filtering results.",description_zh:"用于筛选结果的搜索模型。",required:!1},selectable:{default:"false",value:"",type:"boolean",version:"",description:"Will render a checkbox next to each node allowing them to be selected. Additionally, the openOnClick property will be applied internally.",description_zh:"将在每个节点旁边呈现一个复选框，允许选择它们。此外，openOnClick 属性将在内部应用。",required:!1},selected:{default:"undefined",value:"",type:"any",version:"",description:"An array containing the values of currently selected items. Can be two-way bound with v-model:selected.",description_zh:"包含当前选定项的值的数组。可以与 v-model：selected 进行双向绑定。",required:!1},"selected-color":{default:"undefined",value:"",type:"string",version:"",description:"The color of the selection checkbox.",description_zh:"选择复选框的颜色。",required:!1},"select-strategy":{default:"'single-leaf'",value:"",type:"  | 'single-leaf'  | 'leaf'  | 'independent'  | 'single-independent'  | 'classic'  | SelectStrategy  | ((mandatory: boolean) => SelectStrategy)",version:"",description:"Affects how items with children behave when selected.leaf: Only leaf nodes (items without children) can be selected.independent: All nodes can be selected whether they have children or not.classic: Selecting a parent node will cause all children to be selected, parent nodes will be displayed as selected if all their descendants are selected. Only leaf nodes will be added to the model.",description_zh:"影响具有子项的项目在选中时的行为方式。leaf：只能选择叶节点（没有子项的项目）。independent：可以选择所有节点，无论它们是否具有子节点。classic：选择父节点将导致选择所有子节点，如果父节点的所有后代都被选中，则父节点将显示为已选中。只有叶节点将添加到模型中。",required:!1},slim:{default:"true",value:"",type:"boolean",version:"",description:"Reduces horizontal spacing for badges, icons, tooltips, and avatars within slim list items to create a more compact visual representation.",description_zh:"减少细长列表项中徽章、图标、工具提示和头像的水平间距，以创建更紧凑的视觉表示形式。",required:!1},tag:{default:"'div'",value:"",type:"string",version:"",description:"Specify a custom tag used on the root element.",description_zh:"指定根元素上使用的自定义标记。",required:!1},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},tile:{default:"false",value:"",type:"boolean",version:"",description:"Removes any applied border-radius from the component.",description_zh:"从组件中删除任何应用的 border-radius。",required:!1},"true-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},"value-comparator":{default:"undefined",value:"",type:"(a: any, b: any) => boolean",version:"",description:"Apply a custom comparison algorithm to compare model-value and values contains in the items prop.",description_zh:"应用自定义比较算法来比较 models-value 和 items prop 中包含的值。",required:!1},variant:{default:"'text'",value:"",type:"flat / elevated / tonal / outlined / text / plain",version:"",description:"Applies a distinct style to the component.",description_zh:"将不同的样式应用于组件。",required:!1},width:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the width for the component.",description_zh:"设置组件的宽度。",required:!1}},link:"https://vuetifyjs.com/en/api/v-treeview/",link_zh:"https://vuetifyjs.com/en/api/v-treeview/",typeDetail:{},events:[{name:"click:open",description:"Emits the item when it is clicked to open.",description_zh:"单击以打开项目时发出该项目。",params:"[{ id: unknown; value: boolean; path: unknown[] }]",value:""},{name:"click:select",description:"Emits the item when it is clicked to select.",description_zh:"单击以选择项目时发出项目。",params:"[{ id: unknown; value: boolean; path: unknown[] }]",value:""},{name:"update:activated",description:"Emits the array of active items when this value changes.",description_zh:"当此值更改时，发出活动项的数组。",params:"[unknown]",value:""},{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件的模型更改时发出的事件。",params:"[unknown]",value:""},{name:"update:opened",description:"Emits the array of open items when this value changes.",description_zh:"当此值更改时，发出打开项的数组。",params:"[unknown]",value:""},{name:"update:selected",description:"Emits the array of selected items when this value changes.",description_zh:"当此值更改时，发出所选项目的数组。",params:"[unknown]",value:""}],methods:[],slots:[{name:"append",description:"Appends content after label.",description_zh:"在标签后附加内容。",params:"{\n  isActive: boolean\n  isOpen: boolean\n  isSelected: boolean\n  isIndeterminate: boolean\n  select: (value: boolean) => void\n} & { item: unknown }"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:""},{name:"divider",description:"Slot for custom divider.",description_zh:"用于自定义分隔器的插槽。",params:"{ props: { title: string; value: any; [string]: any } }"},{name:"header",description:"Slot for custom header.",description_zh:"自定义标头的插槽。",params:"{ props: { title: string; value: any; [string]: any } }"},{name:"item",description:"Define a custom item appearance.",description_zh:"定义自定义项外观。",params:"{ props: { title: string; value: any; [string]: any } }"},{name:"prepend",description:"Prepends content before label.",description_zh:"在标签前预置内容。",params:"{\n  isActive: boolean\n  isOpen: boolean\n  isSelected: boolean\n  isIndeterminate: boolean\n  select: (value: boolean) => void\n} & { item: unknown }"},{name:"subheader",description:"Slot for custom subheader.",description_zh:"自定义子标题的插槽。",params:"{ props: { title: string; value: any; [string]: any } }"},{name:"subtitle",description:"Slot for the component’s subtitle content.",description_zh:"组件字幕内容的插槽。",params:"{ subtitle: string | number } & { item: unknown }"},{name:"title",description:"Slot for the component’s title content.",description_zh:"组件标题内容的插槽。",params:"{ title: string | number } & { item: unknown }"}],exposed:[]},Re={name:"VTreeviewGroup",props:{"active-color":{default:"undefined",value:"",type:"string",version:"",description:"The applied color when the component is in an active state.",description_zh:"组件处于活动状态时应用的颜色。",required:!1},"append-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Creates a v-icon component after default content in the append slot.",description_zh:"在附加插槽中的默认内容之后创建一个 v 图标组件。",required:!1},"base-color":{default:"undefined",value:"",type:"string",version:"",description:"Sets the color of component when not focused.",description_zh:"设置未聚焦时组件的颜色。",required:!1},"collapse-icon":{default:"'$treeviewCollapse'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Icon to display when the list item is expanded.",description_zh:"展开列表项时显示的图标。",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page.",description_zh:"将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上查找内置类的列表。",required:!1},"expand-icon":{default:"'$treeviewExpand'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Icon to display when the list item is collapsed.",description_zh:"折叠列表项时显示的图标。",required:!1},fluid:{default:"false",value:"",type:"boolean",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},"prepend-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Prepends an icon to the component, uses the same syntax as v-icon.",description_zh:"在组件前面加上一个图标，使用与 v-icon 相同的语法。",required:!1},tag:{default:"'div'",value:"",type:"string",version:"",description:"Specify a custom tag used on the root element.",description_zh:"指定根元素上使用的自定义标记。",required:!1},title:{default:"undefined",value:"",type:"string",version:"",description:"Specify a title text for the component.",description_zh:"指定组件的标题文本。",required:!1},value:{default:"undefined",value:"",type:"any",version:"",description:"Expands / Collapse the list-group.",description_zh:"展开 / 折叠列表组。",required:!1}},link:"https://vuetifyjs.com/en/api/v-treeview-group/",link_zh:"https://vuetifyjs.com/en/api/v-treeview-group/",typeDetail:{},events:[],methods:[],slots:[{name:"activator",description:"When used, will activate the component when clicked (or hover for specific components). This manually stops the event propagation. Without this slot, if you open the component through its model, you will need to manually stop the event propagation.",description_zh:"使用时，将在单击时激活组件（或将鼠标悬停在特定组件上）。这将手动停止事件传播。如果没有此插槽，如果通过其模型打开组件，则需要手动停止事件传播。",params:"{ isOpen: boolean; props: Record<string, unknown> }"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:""}],exposed:[]},Ee={name:"VTreeviewItem",props:{active:{default:"undefined",value:"",type:"boolean",version:"",description:"Controls the active state of the item. This is typically used to highlight the component.",description_zh:"控制项的活动状态。这通常用于突出显示组件。",required:!1},"active-class":{default:"undefined",value:"",type:"string",version:"",description:"The class applied to the component when it matches the current route. Find more information about the active-class prop on the vue-router documentation.",description_zh:"当组件与当前路由匹配时应用于组件的类。在 vue-router 文档中找到有关 active-class 属性的更多信息。",required:!1},"active-color":{default:"undefined",value:"",type:"string",version:"",description:"The applied color when the component is in an active state.",description_zh:"组件处于活动状态时应用的颜色。",required:!1},"append-avatar":{default:"undefined",value:"",type:"string",version:"",description:"Appends a v-avatar component after default content in the append slot.",description_zh:"在 append 插槽中的 default content 之后附加一个 v-avatar 组件。",required:!1},"append-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Creates a v-icon component after default content in the append slot.",description_zh:"在附加插槽中的默认内容之后创建一个 v 图标组件。",required:!1},"base-color":{default:"undefined",value:"",type:"string",version:"",description:"Sets the color of component when not focused.",description_zh:"设置未聚焦时组件的颜色。",required:!1},border:{default:"false",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be xs, sm, md, lg, xl.",description_zh:"指定应用于组件的 border-radius。这可以是 xs、sm、md、lg、xl。",required:!1},color:{default:"undefined",value:"",type:"string",version:"",description:"Applies specified color to the control when in an active state or input-value is true - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page,",description_zh:"当处于活动状态或输入值为 true 时，将指定的颜色应用于控件 - 支持实用工具颜色（例如 success 或紫色）或 css 颜色（#033 或 rgba（255， 0， 0， 0.5））。在 colors 页面上找到内置类的列表，",required:!1},density:{default:"'default'",value:"",type:"default / comfortable / compact",version:"",description:"Adjusts the vertical height used by the component.",description_zh:"调整组件使用的垂直高度。",required:!1},disabled:{default:"false",value:"",type:"boolean",version:"",description:"Removes the ability to click or target the component.",description_zh:"删除单击组件或定位组件的功能。",required:!1},elevation:{default:"undefined",value:"",type:"string | number",version:"",description:"Designates an elevation applied to the component between 0 and 24. You can find more information on the elevation page.",description_zh:"指定应用于组件的 0 到 24 之间的高程。您可以在海拔页面上找到更多信息。",required:!1},exact:{default:"false",value:"",type:"boolean",version:"",description:"Exactly match the link. Without this, ‘/’ will match every route. You can find more information about the exact prop on the vue-router documentation.",description_zh:"与链接完全匹配。如果没有这个，'/' 将匹配每个路由。你可以在 vue-router 文档中找到有关 exact prop 的更多信息。",required:!1},height:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the height for the component.",description_zh:"设置组件的高度。",required:!1},href:{default:"undefined",value:"",type:"string",version:"",description:"Designates the component as anchor and applies the href attribute.",description_zh:"将组件指定为锚点并应用 href 属性。",required:!1},lines:{default:"false",value:"",type:"false / one / two / three",version:"",description:"The line declaration specifies the minimum height of the item and can also be controlled from v-list with the same prop.",description_zh:"line 声明指定了项目的最小高度，也可以从具有相同 prop 的 v-list 中控制。",required:!1},link:{default:"undefined",value:"",type:"boolean",version:"",description:"Designates that the component is a link. This is automatic when using the href or to prop.",description_zh:"指定零部件为链接。这在使用 href 或 to prop 时是自动的。",required:!1},loading:{default:"false",value:"",type:"boolean",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},"max-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum height for the component.",description_zh:"设置组件的最大高度。",required:!1},"max-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。",required:!1},"min-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum height for the component.",description_zh:"设置组件的最小高度。",required:!1},"min-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum width for the component.",description_zh:"设置组件的最小宽度。",required:!1},nav:{default:"false",value:"",type:"boolean",version:"",description:"Reduces the width v-list-item takes up as well as adding a border radius.",description_zh:"减少 v-list-item 占用的宽度，并添加边框半径。",required:!1},"prepend-avatar":{default:"undefined",value:"",type:"string",version:"",description:"Prepends a v-avatar component in the prepend slot before default content.",description_zh:"在 preend 插槽中将 v-avatar 组件预置在 default 内容之前。",required:!1},"prepend-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Creates a v-icon component in the prepend slot before default content.",description_zh:"在默认内容之前的前置插槽中创建 v 图标组件。",required:!1},replace:{default:"false",value:"",type:"boolean",version:"",description:"Setting replace prop will call router.replace() instead of router.push() when clicked, so the navigation will not leave a history record. You can find more information about the replace prop on the vue-router documentation.",description_zh:"设置 replace 属性将在单击时调用 router.replace（） 而不是 router.push（），因此导航不会留下历史记录。你可以在 vue-router 文档中找到有关 replace prop 的更多信息。",required:!1},ripple:{default:"true",value:"",type:"boolean | { class: string }",version:"",description:"Applies the v-ripple directive.",description_zh:"应用 v-ripple 指令。",required:!1},rounded:{default:"undefined",value:"",type:"string | number | boolean",version:"",description:"Designates the border-radius applied to the component. This can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. Find more information on available border radius classes on the Border Radius page.",description_zh:"指定应用于组件的 border-radius。这可以是 0、xs、sm、true、lg、xl、pill、circle 和 shaped。在 Border Radius 页面上查找有关可用边界半径类的更多信息。",required:!1},slim:{default:"true",value:"",type:"boolean",version:"",description:"Reduces horizontal spacing for badges, icons, tooltips, and avatars to create a more compact visual representation.",description_zh:"减少徽章、图标、工具提示和头像的水平间距，以创建更紧凑的视觉表示。",required:!1},subtitle:{default:"undefined",value:"",type:"string | number",version:"",description:"Specify a subtitle text for the component.",description_zh:"指定组件的副标题文本。",required:!1},tag:{default:"'div'",value:"",type:"string",version:"",description:"Specify a custom tag used on the root element.",description_zh:"指定根元素上使用的自定义标记。",required:!1},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},tile:{default:"false",value:"",type:"boolean",version:"",description:"Removes any applied border-radius from the component.",description_zh:"从组件中删除任何应用的 border-radius。",required:!1},title:{default:"undefined",value:"",type:"string | number",version:"",description:"Generates a v-list-item-title component with the supplied value. Note that this overrides the native title attribute, that must be set with v-bind:title.attr instead.",description_zh:"使用提供的值生成 v-list-item-title 组件。请注意，这会覆盖原生 title 属性，必须用 v-bind：title.attr 来设置。",required:!1},to:{default:"undefined",value:"",type:"RouteLocationRaw",version:"",description:"Denotes the target route of the link. You can find more information about the to prop on the vue-router documentation.",description_zh:"表示链路的目标路由。你可以在 vue-router 文档中找到有关 to prop 的更多信息。",required:!1},"toggle-icon":{default:"undefined",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",required:!1},value:{default:"undefined",value:"",type:"any",version:"",description:"The value used for selection. Obtained from v-list’s v-model:selected when the item is selected.",description_zh:"用于选择的值。当项目被选中时，从 v-list 的 v-model：selected 中获得。",required:!1},variant:{default:"'text'",value:"",type:"flat / elevated / tonal / outlined / text / plain",version:"",description:"Applies a distinct style to the component.",description_zh:"将不同的样式应用于组件。",required:!1},width:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the width for the component.",description_zh:"设置组件的宽度。",required:!1}},link:"https://vuetifyjs.com/en/api/v-treeview-item/",link_zh:"https://vuetifyjs.com/en/api/v-treeview-item/",typeDetail:{},events:[{name:"click",description:"Event that is emitted when the component is clicked.",description_zh:"单击组件时发出的事件。",params:"[MouseEvent | KeyboardEvent]",value:""},{name:"clickOnce",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"[MouseEvent]",value:""},{name:"toggleExpand",description:"MISSING DESCRIPTION (edit in github)",description_zh:"缺少描述（在 github 中编辑）",params:"[MouseEvent]",value:""}],methods:[],slots:[{name:"append",description:"Adds an item inside the input and after input content.",description_zh:"在 input 内容内和 After input 内容中添加一个项目。",params:"{\n  isActive: boolean\n  isOpen: boolean\n  isSelected: boolean\n  isIndeterminate: boolean\n  select: (value: boolean) => void\n}"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{\n  isActive: boolean\n  isOpen: boolean\n  isSelected: boolean\n  isIndeterminate: boolean\n  select: (value: boolean) => void\n}"},{name:"prepend",description:"Adds an item outside the input and before input content.",description_zh:"在输入内容之外和之前添加项目。",params:"{\n  isActive: boolean\n  isOpen: boolean\n  isSelected: boolean\n  isIndeterminate: boolean\n  select: (value: boolean) => void\n}"},{name:"subtitle",description:"Slot for the component’s subtitle content.",description_zh:"组件字幕内容的插槽。",params:"{ subtitle: string | number }"},{name:"title",description:"Slot for the component’s title content.",description_zh:"组件标题内容的插槽。",params:"{ title: string | number }"}],exposed:[]},Pe={name:"VValidation",props:{disabled:{default:"null",value:"",type:"boolean",description:"Remove the component's click or target functionality.",description_zh:"移除组件的单击或 target 功能。"},error:{default:"false",value:"",type:"boolean",description:"Set the input box to a manual error state.",description_zh:"将输入框设置为手动错误状态。"},"error-messages":{default:"[]",value:"",type:"string | string[]",description:"Put the input box into an error state and pass in a custom error message. will be combined with any validation from the rules property. This field does not trigger validation.",description_zh:"将输入框置于错误状态，并传入自定义的错误信息。将与来自 rules 属性的任何验证相结合。这个字段不会触发验证。"},focused:{default:"false",value:"",type:"boolean",description:"Force the component to use the style when focused.",description_zh:"强制组件使用聚焦时的样式。"},label:{default:"undefined",value:"",type:"string",description:"Sets the text of the v-label or v-field-label component.",description_zh:"设置 v-label 或 v-field-label 组件的文本。"},"max-errors":{default:"1",value:"",type:"string | number",description:"Control the maximum number of shown errors from validation.",description_zh:"控制验证中显示的最大错误数。"},":v-model":{default:"undefined",value:"",type:"unknown",description:"The value of the component v-mode. If the component supports variants, the default is an empty array.",description_zh:"组件 v-mode 的值。如果组件支持多属性，默认为空数组。"},name:{default:"undefined",value:"",type:"string",description:"Set the name property of the component.",description_zh:"设置组件的 name 属性."},readonly:{default:"null",value:"",type:"boolean",description:"Puts input in readonly state.",description_zh:"将输入置于只读状态。"},rules:{default:"[]",value:"",type:"ValidationRule[]",description:"Accepts a mixed array of types function, boolean and string. Functions pass an input value as an argument and must return either true / false or a string containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) false or is a string.",description_zh:"接受 function、boolean 和 string 类型的混合数组。函数将输入值作为参数传递，并且必须返回 true / false 或包含错误消息的字符串。如果函数返回（或数组中的任何值包含）false 或字符串，则输入字段将进入错误状态。"},"validate-on":{default:"undefined",value:"",type:" / blur / input / submit / blur lazy / input lazy / submit lazy / lazy blur / lazy input / lazy submit / lazy",description:"Change what type of event triggers validation to run.",description_zh:"更改触发要运行的验证的事件类型。"},"validation-value":{default:"undefined",value:"",type:"any",description:"The value used when applying validation rules.",description_zh:"应用验证规则时使用的值。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-validation/#props",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-validation/#props",typeDetail:{},events:[{name:"update:focused",description:"Event that is emitted when the component’s focus state changes.",description_zh:"当组件的焦点状态更改时发出的事件。",params:"[boolean]",value:""},{name:"update:modelValue",description:"An event that is raised when a component's model-value changes.",description_zh:"当组件的 model-value 更改时引发的事件。",params:"[unknown]",value:""}],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{\n  errorMessages: ComputedRef<string[]>\n  isDirty: ComputedRef<boolean>\n  isDisabled: ComputedRef<boolean>\n  isReadonly: ComputedRef<boolean>\n  isPristine: ShallowRef<boolean>\n  isValid: ComputedRef<boolean | null>\n  isValidating: ShallowRef<boolean>\n  reset: () => Promise<void>\n  resetValidation: () => Promise<void>\n  validate: (silent: boolean) => Promise<string[]>\n  validationClasses: ComputedRef<{ [x: string]: boolean }>\n}"}]},zi={name:"VVirtualScroll",props:{height:{default:"undefined",value:"",type:"string | number",version:"",description:"Height of the component as a css value/",description_zh:"组件的高度作为 css 值/",required:!1},"item-height":{default:"null",value:"",type:"string | number",version:"",description:"Height in pixels of each item to display.",description_zh:"要显示的每个项目的 Height （以像素为单位）。",required:!1},items:{default:"[]",value:"",type:"unknown[]",version:"",description:"The array of items to display.",description_zh:"要显示的项数组。",required:!1},"max-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum height for the component.",description_zh:"设置组件的最大高度。",required:!1},"max-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the maximum width for the component.",description_zh:"设置组件的最大宽度。",required:!1},"min-height":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum height for the component.",description_zh:"设置组件的最小高度。",required:!1},"min-width":{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the minimum width for the component.",description_zh:"设置组件的最小宽度。",required:!1},renderless:{default:"false",value:"",type:"boolean",version:"",description:"Disables default component rendering functionality.",description_zh:"禁用默认组件渲染功能。",required:!1},width:{default:"undefined",value:"",type:"string | number",version:"",description:"Sets the width for the component.",description_zh:"设置组件的宽度。",required:!1}},link:"https://vuetifyjs.com/en/api/v-virtual-scroll/",link_zh:"https://vuetifyjs.com/en/api/v-virtual-scroll/",typeDetail:{},events:[],methods:[],slots:[{name:"default",description:"Default slot to render a single item.",description_zh:"用于渲染单个项目的 Default slot 来渲染单个项目。",params:"| { item: unknown; index: number }\n  | ({ item: unknown; index: number } & {\n      itemRef: Ref<HTMLElement | undefined>\n    })"}],exposed:[{name:"calculateVisibleItems",description:"MISSING DESCRIPTION (edit in github)",description_zh:"MISSING DESCRIPTION (edit in github)",detail:"() => void"},{name:"scrollToIndex",description:"Scrolls to the item at a given index.",description_zh:"Scrolls to the item at a given index.",detail:"(index: number) => void"}]},_i={name:"VWindow",props:{continuous:{default:"false",value:"",type:"boolean",version:"",description:"If true, window will “wrap around” from the last item to the first, and from the first item to the last.",description_zh:"如果为 true，则 window 将从最后一项到第一项，以及从第一项到最后一项“环绕”。",required:!1},direction:{default:"'horizontal'",value:"",type:"horizontal / vertical",version:"",description:"The transition direction when changing windows.",description_zh:"更改窗口时的过渡方向。",required:!1},disabled:{default:"false",value:"",type:"boolean",version:"",description:"Removes the ability to click or target the component.",description_zh:"删除单击组件或定位组件的功能。",required:!1},mandatory:{default:"'force'",value:"",type:"boolean / force",version:"",description:"Forces at least one item to always be selected (if available).",description_zh:"强制始终选择至少一个项目（如果可用）。",required:!1},":v-model":{default:"undefined",value:"",type:"unknown",version:"",description:"The v-model value of the component. If component supports the multiple prop, this defaults to an empty array.",description_zh:"组件的 v-model 值。如果 component 支持 multiple prop，则默认为空数组。",required:!0},"next-icon":{default:"'$next'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Icon used for the “next” button if show-arrows is true.",description_zh:"如果 show-arrows 为 true，则用于 “next” 按钮的图标。",required:!1},"prev-icon":{default:"'$prev'",value:"",type:"  | string  | (string | [string, number])[]  | (new () => any)  | FunctionalComponent",version:"",description:"Icon used for the “prev” button if show-arrows is true.",description_zh:"如果 show-arrows 为 true，则用于 “prev” 按钮的图标。",required:!1},reverse:{default:"false",value:"",type:"boolean",version:"",description:"Reverse the normal transition direction.",description_zh:"反转正常过渡方向。",required:!1},"selected-class":{default:"'v-window-item--active'",value:"",type:"string",version:"",description:"Configure the active CSS class applied when an item is selected.",description_zh:"配置在选择项目时应用的活动 CSS 类。",required:!1},"show-arrows":{default:"false",value:"",type:"string | boolean",version:"",description:"Display the “next” and “prev” buttons.",description_zh:"显示 “next” 和 “prev” 按钮。",required:!1},tag:{default:"'div'",value:"",type:"string",version:"",description:"Specify a custom tag used on the root element.",description_zh:"指定根元素上使用的自定义标记。",required:!1},theme:{default:"undefined",value:"",type:"string",version:"",description:"Specify a theme for this component and all of its children.",description_zh:"为此组件及其所有子组件指定主题。",required:!1},touch:{default:"undefined",value:"",type:"boolean | TouchHandlers",version:"",description:"Provide a custom left and right function when swiped left or right.",description_zh:"在向左或向右滑动时提供自定义的 left 和 right 功能。",required:!1}},link:"https://vuetifyjs.com/en/api/v-window/",link_zh:"https://vuetifyjs.com/en/api/v-window/",typeDetail:{},events:[{name:"update:modelValue",description:"Event that is emitted when the component’s model changes.",description_zh:"组件的模型更改时发出的事件。",params:"[unknown]",value:""}],methods:[],slots:[{name:"additional",description:"Slot for additional content at the end of the component.",description_zh:"组件末尾的附加内容插槽。",params:"{\n  group: {\n    register: (\n      item: {\n        id: number\n        value: Ref<unknown>\n        disabled: Ref<boolean | undefined>\n        useIndexAsValue: boolean\n      },\n      cmp: ComponentInternalInstance,\n    ) => void\n    unregister: (id: number) => void\n    select: (id: number, value: boolean) => void\n    selected: Ref<readonly number[]>\n    isSelected: (id: number) => boolean\n    prev: () => void\n    next: () => void\n    selectedClass: Ref<string | undefined>\n    items: ComputedRef<\n      { id: number; value: unknown; disabled: boolean | undefined }[]\n    >\n    disabled: Ref<boolean | undefined>\n    getItemIndex: (value: unknown) => number\n  }\n}"},{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:"{\n  group: {\n    register: (\n      item: {\n        id: number\n        value: Ref<unknown>\n        disabled: Ref<boolean | undefined>\n        useIndexAsValue: boolean\n      },\n      cmp: ComponentInternalInstance,\n    ) => void\n    unregister: (id: number) => void\n    select: (id: number, value: boolean) => void\n    selected: Ref<readonly number[]>\n    isSelected: (id: number) => boolean\n    prev: () => void\n    next: () => void\n    selectedClass: Ref<string | undefined>\n    items: ComputedRef<\n      { id: number; value: unknown; disabled: boolean | undefined }[]\n    >\n    disabled: Ref<boolean | undefined>\n    getItemIndex: (value: unknown) => number\n  }\n}"},{name:"next",description:"Slot displaying the arrow switching to the next item.",description_zh:"显示切换到下一项的箭头的插槽。",params:"{\n  props: {\n    icon:\n      | string\n      | (string | [string, number])[]\n      | (new () => any)\n      | FunctionalComponent\n    class: string\n    onClick: () => void\n    'aria-label': string\n  }\n}"},{name:"prev",description:"Slot displaying the arrow switching to the previous item.",description_zh:"显示切换到上一项的箭头的插槽。",params:"{\n  props: {\n    icon:\n      | string\n      | (string | [string, number])[]\n      | (new () => any)\n      | FunctionalComponent\n    class: string\n    onClick: () => void\n    'aria-label': string\n  }\n}"}],exposed:[{name:"group",description:"Returns item group data, state and helper methods.",description_zh:"Returns item group data, state and helper methods.",detail:"{\n  register: (item: GroupItem, cmp: ComponentInternalInstance) => void\n  unregister: (id: number) => void\n  select: (id: number, value: boolean) => void\n  selected: readonly number[]\n  isSelected: (id: number) => boolean\n  prev: () => void\n  next: () => void\n  selectedClass: string | undefined\n  items: { id: number; value: unknown; disabled: boolean | undefined }[]\n  disabled: boolean | undefined\n  getItemIndex: (value: unknown) => number\n}"}]},wi={name:"VWindowItem",props:{disabled:{default:"false",value:"",type:"boolean",description:"Prevents the item from becoming active when using the “next” and “prev” buttons or the toggle method.",description_zh:"防止项目在使用“下一个”和“上一个”按钮或切换方法时变为活动状态。"},eager:{default:"false",value:"",type:"boolean",description:"Forces the component’s content to render when it mounts. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO.",description_zh:"强制在装入组件时呈现组件的内容。如果您的内容不会在 DOM 中呈现，而您希望为 SEO 进行爬网，这将非常有用。"},"reverse-transition":{default:"undefined",value:"",type:"string | boolean",description:"Sets the reverse transition.",description_zh:"设置反向转换。"},"selected-class":{default:"undefined",value:"",type:"string",description:"Configure the name of the CSS class that will be applied when the selected item is selected.",description_zh:"配置被选中项目时应用的 CSS 类名。"},transition:{default:"undefined",value:"",type:"string | boolean",description:"The transition used when the component progressing through items. Can be one of the built in or custom transition.",description_zh:"组件在项目中前进时使用的过渡。可以是内置过渡或自定义过渡之一。"},value:{default:"undefined",value:"",type:"any",description:"The value used when selecting a component in a group. If not provided, a unique ID is used.",description_zh:"在组中选择组件时使用的值。如果没有提供，则使用唯一 ID。"}},link:"https://vuetifyjs.com/zh-Hans/api/v-window-item/#links",link_zh:"https://vuetifyjs.com/zh-Hans/api/v-window-item/#links",typeDetail:{},events:[{name:"group:selected",description:"Event that is emitted when an item is selected within a group.",description_zh:"在组中选择项目时发出的事件。",params:"[{ value: boolean }]",value:""}],methods:[],slots:[{name:"default",description:"The default Vue slot.",description_zh:"默认的 Vue 插槽。",params:""}]};function Ci(){return[t,i,n,o,a,r,s,l,d,p,u,c,h,m,f,v,b,w,y,g,I,S,z,_,T,N,C,D,k,x,R,E,P,q,M,O,G,A,V,H,F,j,$,B,L,Y,U,W,X,J,Q,ee,te,ie,ne,oe,ae,re,se,le,de,pe,ue,he,ce,fe,ve,be,ge,ze,_e,we,Pe,Xe,Ze,st,mt,ft,bt,gt,yt,It,et,nt,tt,it,Rt,qt,Vt,Et,Pt,Mt,Ot,Ft,Bt,ii,gi,yi,Ii,Si,Ae,Ve,He,Ye,Ue,Ke,We,Me,jt,$t,Lt,di,ci,pi,Fe,rt,ut,zt,_t,Ct,Xt,Kt,Jt,ti,ni,li,mi,hi,ui,zi,ct,ei,dt,ai,Je,Qe,ot,at,lt,Dt,kt,_i,wi,Oe,Ge,Ni,$e,Le,Be,wt,Ut,Wt,Qt,oi,vi,bi,Zt,Nt,xt,ht,fi,Ht,Yt,Tt,je,pt,At,Gt,vt,ri,si,St,K,Z,me,ye,Ie,Se,Te,Ne,Ce,De,ke,xe,Re,Ee]}function Di(qe){return qe?[[t,"app",`<${e(t.name)}></${e(t.name)}>`],[i,"bottomSheet",`<${e(i.name)}></${e(i.name)}>`],[n,"calendar",`<${e(n.name)}></${e(n.name)}>`],[o,"calendarDay",`<${e(o.name)}></${e(o.name)}>`],[a,"calendarHeader",`<${e(a.name)}></${e(a.name)}>`],[r,"calendarInterval",`<${e(r.name)}></${e(r.name)}>`],[s,"calendarIntervalEvent",`<${e(s.name)}></${e(s.name)}>`],[l,"calendarMonthDay",`<${e(l.name)}></${e(l.name)}>`],[d,"cardActions",`<${e(d.name)}></${e(d.name)}>`],[p,"checkboxBtn",`<${e(p.name)}></${e(p.name)}>`],[u,"classIcon",`<${e(u.name)}></${e(u.name)}>`],[c,"code",`<${e(c.name)}></${e(c.name)}>`],[h,"componentIcon",`<${e(h.name)}></${e(h.name)}>`],[m,"confirmEdit",`<${e(m.name)}></${e(m.name)}>`],[f,"counter",`<${e(f.name)}></${e(f.name)}>`],[v,"dataIterator",`<${e(v.name)}></${e(v.name)}>`],[b,"dataTable",`<${e(b.name)}></${e(b.name)}>`],[w,"dateInput",`<${e(w.name)}></${e(w.name)}>`],[y,"dataTableHeaders",`<${e(y.name)}></${e(y.name)}>`],[g,"dataTableFooter",`<${e(g.name)}></${e(g.name)}>`],[I,"dataTableRow",`<${e(I.name)}></${e(I.name)}>`],[S,"dataTableRows",`<${e(S.name)}></${e(S.name)}>`],[z,"dataTableServer",`<${e(z.name)}></${e(z.name)}>`],[_,"dataTableVirtual",`<${e(_.name)}></${e(_.name)}>`],[T,"datePicker",`<${e(T.name)}></${e(T.name)}>`],[N,"datePickerControls",`<${e(N.name)}></${e(N.name)}>`],[C,"datePickerHeader",`<${e(C.name)}></${e(C.name)}>`],[D,"datePickerMonth",`<${e(D.name)}></${e(D.name)}>`],[k,"datePickerMonths",`<${e(k.name)}></${e(k.name)}>`],[x,"datePickerYears",`<${e(x.name)}></${e(x.name)}>`],[R,"dialogBottomTransition",`<${e(R.name)}></${e(R.name)}>`],[E,"dialogTopTransition",`<${e(E.name)}></${e(E.name)}>`],[P,"dialogTransition",`<${e(P.name)}></${e(P.name)}>`],[q,"expandTransition",`<${e(q.name)}></${e(q.name)}>`],[M,"expandXTransition",`<${e(M.name)}></${e(M.name)}>`],[O,"fabTransition",`<${e(O.name)}></${e(O.name)}>`],[G,"fadeTransition",`<${e(G.name)}></${e(G.name)}>`],[A,"field",`<${e(A.name)}></${e(A.name)}>`],[V,"fieldLabel",`<${e(V.name)}></${e(V.name)}>`],[H,"infiniteScroll",`<${e(H.name)}></${e(H.name)}>`],[F,"kbd",`<${e(F.name)}></${e(F.name)}>`],[j,"label",`<${e(j.name)}></${e(j.name)}>`],[$,"layout",`<${e($.name)}></${e($.name)}>`],[B,"layoutItem",`<${e(B.name)}></${e(B.name)}>`],[L,"ligatureIcon",`<${e(L.name)}></${e(L.name)}>`],[Y,"main",`<${e(Y.name)}></${e(Y.name)}>`],[U,"messages",`<${e(U.name)}></${e(U.name)}>`],[W,"noSsr",`<${e(W.name)}></${e(W.name)}>`],[X,"otpInput",`<${e(X.name)}></${e(X.name)}>`],[J,"picker",`<${e(J.name)}></${e(J.name)}>`],[Q,"pickerTitle",`<${e(Q.name)}></${e(Q.name)}>`],[ee,"scaleTransition",`<${e(ee.name)}></${e(ee.name)}>`],[te,"scrollXReverseTransition",`<${e(te.name)}></${e(te.name)}>`],[ie,"scrollXTransition",`<${e(ie.name)}></${e(ie.name)}>`],[ne,"scrollYReverseTransition",`<${e(ne.name)}></${e(ne.name)}>`],[oe,"scrollYTransition",`<${e(oe.name)}></${e(oe.name)}>`],[ae,"selectionControl",`<${e(ae.name)}></${e(ae.name)}>`],[re,"selectionControlGroup",`<${e(re.name)}></${e(re.name)}>`],[se,"skeletonLoader",`<${e(se.name)}></${e(se.name)}>`],[le,"slideGroup",`<${e(le.name)}></${e(le.name)}>`],[de,"slideGroupItem",`<${e(de.name)}></${e(de.name)}>`],[pe,"slideXReverseTransition",`<${e(pe.name)}></${e(pe.name)}>`],[ue,"slideXTransition",`<${e(ue.name)}></${e(ue.name)}>`],[he,"slideYTransition",`<${e(he.name)}></${e(he.name)}>`],[ce,"slideYReverseTransition",`<${e(ce.name)}></${e(ce.name)}>`],[fe,"stepper",`<${e(fe.name)}></${e(fe.name)}>`],[ve,"stepperActions",`<${e(ve.name)}></${e(ve.name)}>`],[be,"stepperHeader",`<${e(be.name)}></${e(be.name)}>`],[ge,"stepperItem",`<${e(ge.name)}></${e(ge.name)}>`],[ze,"stepperWindow",`<${e(ze.name)}></${e(ze.name)}>`],[_e,"stepperWindowItem",`<${e(_e.name)}></${e(_e.name)}>`],[we,"svgIcon",`<${e(we.name)}></${e(we.name)}>`],[Pe,"validation",`<${e(Pe.name)}></${e(Pe.name)}>`],[je,"头像","<v-avatar></v-avatar>"],[Tt,"图标","<v-icon></v-icon>"],[pt,"颜色选择器","<v-color-picker></v-color-picker>"],[Yt,"视差","<v-parallax></v-parallax>"],[fi,"主题供应者","<v-theme-provider></v-theme-provider>"],[ht,"默认供应者","<v-defaults-provider></v-defaults-provider>"],[Ht,"本地供应者","<v-locale-provider></v-locale-provider>"],[xt,"懒加载","<v-lazy></v-lazy>"],[Nt,"图像","<v-img></v-img>"],[Zt,"长宽比","<v-responsive></v-responsive>"],[vi,"时间线","<v-timeline></v-timeline>"],[bi,"时间线","<v-timeline-item></v-timeline-item>"],[oi,"消息条","<v-snackbar></v-snackbar>"],[Qt,"评分","<v-rating></v-rating>"],[Wt,"进度条","<v-progress-linear></v-progress-linear>"],[Ut,"环状进度","<v-progress-circular></v-progress-circular>"],[wt,"悬停","<v-hover></v-hover>"],[$e,"横幅","<v-banner></v-banner>"],[Le,"横幅","<v-banner-text></v-banner-text>"],[Be,"横幅","<v-banner-actions></v-banner-actions>"],[Oe,"警告框","<v-alert></v-alert>"],[Ge,"警告框","<v-alert-title></v-alert-title>"],[_i,"窗格","<v-window></v-window>"],[wi,"窗格","<v-window-item></v-window-item>"],[Dt,"项目组","<v-item></v-item>"],[kt,"项目组","<v-item-group></v-item-group>"],[lt,"纸片组","<v-chip-group></v-chip-group>"],[at,"轮播项","<v-carousel-item></v-carousel-item>"],[ot,"轮播","<v-carousel></v-carousel>"],[Qe,"按钮组","<v-btn-group></v-btn-group>"],[Je,"切换按钮","<v-btn-toggle></v-btn-toggle>"],[ai,"间距组件","<v-spacer></v-spacer>"],[dt,"行容器","<v-col></v-col>"],[ei,"行容器","<v-row></v-row>"],[ct,"容器","<v-container></v-container>"],[zi,"虚拟滚动列表","<v-virtualScroll></v-virtualScroll>"],[ui,"表格","<v-table></v-table>"],[hi,"多行文本框","<v-textarea></v-textarea>"],[mi,"单行文本框","<v-textField></v-textField>"],[li,"开关","<v-switch></v-switch>"],[ni,"滑块","<v-slider></v-slider>"],[ti,"下拉选择框","<v-select></v-select>"],[Jt,"范围滑块","<v-range-slider></v-range-slider>"],[Xt,"单选按钮组","<v-radio-group></v-radio-group>"],[Kt,"单选按钮","<v-radio></v-radio>"],[Ct,"自定义输入框","<v-input></v-input>"],[_t,"表单","<v-form></v-form>"],[zt,"上传文件","<v-file-input></v-file-input>"],[ut,"组合选择框","<v-combobox></v-combobox>"],[rt,"复选框","<v-checkbox></v-checkbox>"],[Fe,"自动补全","<v-autocomplete></v-autocomplete>"],[pi,"选项卡","<v-tab></v-tab>"],[ci,"选项卡","<v-tabs></v-tabs>"],[di,"系统栏","<v-systemBar></v-systemBar>"],[Lt,"分页","<v-pagination></v-pagination>"],[jt,"抽屉式导航","<v-navigation-drawer></v-navigation-drawer>"],[$t,"抽屉式导航","<v-navigation-item></v-navigation-item>"],[Me,"底部栏组件","<v-footer></v-footer>"],[Me,"底部栏组件","<v-footer></v-footer>"],[Ue,"面包屑导航","<v-breadcrumbs></v-breadcrumbs>"],[Ke,"面包屑导航","<v-breadcrumbs-item></v-breadcrumbs-item>"],[We,"面包屑导航","<v-breadcrumbs-divider></v-breadcrumbs-divider>"],[Ye,"底部导航栏","<v-bottom-navigation></v-bottom-navigation>"],[Ae,"应用栏","<v-app-bar></v-app-bar>"],[Ve,"应用栏","<v-app-bar-nav-icon></v-app-bar-nav-icon>"],[He,"应用栏","<v-app-bar-title></v-app-bar-title>"],[Si,"工具栏","<v-tooltip></v-tooltip>"],[gi,"工具栏",'<v-toolbar title="Application"></v-toolbar>'],[yi,"工具栏","<v-toolbar-items></v-toolbar-items>"],[Ii,"工具栏","<v-toolbar-title></v-toolbar-title>"],[Xe,"按钮","<v-btn>Button</v-btn>"],[Ze,"卡片",'<v-card text="..."></v-card>'],[et,"卡片","<v-card-item></v-card-item>"],[ii,"工作区",'<v-sheet :height="200" :width="200"></v-sheet>'],[it,"卡片","<v-card-text></v-card-text>"],[nt,"卡片","<v-card-title></v-card-title>"],[tt,"卡片","<v-card-subtitle></v-card-subtitle>"],[st,"纸片","<v-chip>Chip</v-chip"],[mt,"对话框",'<v-dialog\n  v-model="dialog"\n  activator="parent"\n  width="auto"\n></v-dialog'],[ft,"组件用于分隔列表或布局的各个部分","<v-divider></v-divider>"],[gt,"扩展面板 组件有助于减少大量信息的垂直空间占用。 组件默认仅显示一个扩展面板；但你可以使用 multiple 属性后，扩展面板可以保持打开，直到主动关闭","<v-expansion-panels></v-expansion-panels>"],[bt,"扩展面板 用于包裹 v-expansion-panel-text 和 v-expansion-panel-title 的子组件",'<v-expansion-panel  title="Title"\n  text="Lorem"\n></v-expansion-panel>'],[It,"高级版扩展面板 用于展示可扩展面板的标题的子组件。 也可以包裹在 #title 插槽内","<v-expansion-panel-title></v-expansion-panel-title>"],[yt,"高级版扩展面板 用于展示可扩展面板的内容的子组件。 也可以包裹在 #text 插槽内","<v-expansion-panel-text></v-expansion-panel-text>"],[Rt,"列表 简单地用于表明某几个元素属于同一个集合。 列表为同组的文字和图像提供了了相同的样式",'<v-list lines="one"></v-list>'],[Et,"列表 可以使用 v-list-group 组件创建列表的子列表。","<v-list-group></v-list-group>"],[Pt,"列表","<v-list-img></v-list-img>"],[Vt,"列表","<v-list-subheader></v-list-subheader>"],[qt,"导航列表","<v-list-item></v-list-item>"],[At,"导航列表","<v-list-item-title></v-list-item-title>"],[Gt,"导航列表","<v-list-item-subtitle></v-list-item-subtitle>"],[Mt,"导航列表","<v-list-item-action></v-list-item-action>"],[Ot,"导航列表","<v-list-item-media></v-list-item-media>"],[Ft,"菜单 可以在某个激活菜单的元素位置显示一个菜单。","<v-menu></v-menu>"],[Bt,"遮罩层",'<v-overlay v-model="overlay"></v-overlay>'],[vt,"v-empty-state 组件用于表示某个列表是空的或者搜索结果是空的。",'<v-empty-state\n      headline="Whoops, 404"\n      title="Page not found"\n      text="The page you were looking for does not exist"\n      image="https://vuetifyjs.b-cdn.net/docs/images/logos/v.png"\n    ></v-empty-state>'],[ri,"迷你图表组件可以用来创建简单的图表，例如GitHub的贡献图。",'<v-sparkline\n        :fill="fill"\n        :gradient="selectedGradient"\n        :line-width="lineWidth"\n        :model-value="value"\n        :padding="padding"\n        :smooth="smooth"\n        auto-draw\n      ></v-sparkline>'],[si,"v-speed-dial 组件可以用作浮动操作按钮，单击时可以显示其他操作",'<v-speedDial location="bottom center" transition="fade-transition"></v-speedDial>'],[St,"v-fab 组件可以用作浮动操作按钮。这为应用程序提供了一个主要的操作点",'<v-fab icon="$vuetify"></v-fab>'],[K,"v-number-input 组件支持 v-field 的大部分属性，并遵循与其他输入相同的设计模式",`<${e(K.name)}></${e(K.name)}>`],[Z,"PullToRefresh 允许用户通过在屏幕上向下滑动来更新内容。适用于移动设备和桌面设备",`<${e(Z.name)}></${e(Z.name)}>`],[me,"v-snackbar-queue 组件用于将多个 Snackbar 消息排队显示给用户。Snackbars 支持定位、移除延迟和回调。",`<${e(me.name)}></${e(me.name)}>`],[ye,"v-snackbar-queue 组件用于将多个 Snackbar 消息排队显示给用户。Snackbars 支持定位、移除延迟和回调。",`<${e(ye.name)}></${e(ye.name)}>`],[Ie,"v-snackbar-queue 组件用于将多个 Snackbar 消息排队显示给用户。Snackbars 支持定位、移除延迟和回调。",`<${e(Ie.name)}></${e(Ie.name)}>`],[Se,"v-snackbar-queue 组件用于将多个 Snackbar 消息排队显示给用户。Snackbars 支持定位、移除延迟和回调。",`<${e(Se.name)}></${e(Se.name)}>`],[Te,"tabsWindow",`<${e(Te.name)}></${e(Te.name)}>`],[Ne,"tabsWindowItem",`<${e(Ne.name)}></${e(Ne.name)}>`],[Ce,"v-time-picker 是一个独立组件，可用于许多现有的 Vuetify 组件。它为用户提供了选择时间的视觉表示。",`<${e(Ce.name)}></${e(Ce.name)}>`],[De,"v-time-picker 是一个独立组件，可用于许多现有的 Vuetify 组件。它为用户提供了选择时间的视觉表示。",`<${e(De.name)}></${e(De.name)}>`],[ke,"v-time-picker 是一个独立组件，可用于许多现有的 Vuetify 组件。它为用户提供了选择时间的视觉表示。",`<${e(ke.name)}></${e(ke.name)}>`],[xe,"v-treeview 组件对于显示大量嵌套数据很有用。",`<${e(xe.name)}></${e(xe.name)}>`],[Re,"v-treeview 组件对于显示大量嵌套数据很有用。",`<${e(Re.name)}></${e(Re.name)}>`],[Ee,"v-treeview 组件对于显示大量嵌套数据很有用。",`<${e(Ee.name)}></${e(Ee.name)}>`]]:[[t,"app",`<${e(t.name)}></${e(t.name)}>`],[i,"bottomSheet",`<${e(i.name)}></${e(i.name)}>`],[n,"calendar",`<${e(n.name)}></${e(n.name)}>`],[o,"calendarDay",`<${e(o.name)}></${e(o.name)}>`],[a,"calendarHeader",`<${e(a.name)}></${e(a.name)}>`],[r,"calendarInterval",`<${e(r.name)}></${e(r.name)}>`],[s,"calendarIntervalEvent",`<${e(s.name)}></${e(s.name)}>`],[l,"calendarMonthDay",`<${e(l.name)}></${e(l.name)}>`],[d,"cardActions",`<${e(d.name)}></${e(d.name)}>`],[p,"checkboxBtn",`<${e(p.name)}></${e(p.name)}>`],[u,"classIcon",`<${e(u.name)}></${e(u.name)}>`],[c,"code",`<${e(c.name)}></${e(c.name)}>`],[h,"componentIcon",`<${e(h.name)}></${e(h.name)}>`],[m,"confirmEdit",`<${e(m.name)}></${e(m.name)}>`],[f,"counter",`<${e(f.name)}></${e(f.name)}>`],[v,"dataIterator",`<${e(v.name)}></${e(v.name)}>`],[b,"dataTable",`<${e(b.name)}></${e(b.name)}>`],[w,"dateInput",`<${e(w.name)}></${e(w.name)}>`],[y,"dataTableHeaders",`<${e(y.name)}></${e(y.name)}>`],[g,"dataTableFooter",`<${e(g.name)}></${e(g.name)}>`],[I,"dataTableRow",`<${e(I.name)}></${e(I.name)}>`],[S,"dataTableRows",`<${e(S.name)}></${e(S.name)}>`],[z,"dataTableServer",`<${e(z.name)}></${e(z.name)}>`],[_,"dataTableVirtual",`<${e(_.name)}></${e(_.name)}>`],[T,"datePicker",`<${e(T.name)}></${e(T.name)}>`],[N,"datePickerControls",`<${e(N.name)}></${e(N.name)}>`],[C,"datePickerHeader",`<${e(C.name)}></${e(C.name)}>`],[D,"datePickerMonth",`<${e(D.name)}></${e(D.name)}>`],[k,"datePickerMonths",`<${e(k.name)}></${e(k.name)}>`],[x,"datePickerYears",`<${e(x.name)}></${e(x.name)}>`],[R,"dialogBottomTransition",`<${e(R.name)}></${e(R.name)}>`],[E,"dialogTopTransition",`<${e(E.name)}></${e(E.name)}>`],[P,"dialogTransition",`<${e(P.name)}></${e(P.name)}>`],[q,"expandTransition",`<${e(q.name)}></${e(q.name)}>`],[M,"expandXTransition",`<${e(M.name)}></${e(M.name)}>`],[O,"fabTransition",`<${e(O.name)}></${e(O.name)}>`],[G,"fadeTransition",`<${e(G.name)}></${e(G.name)}>`],[A,"field",`<${e(A.name)}></${e(A.name)}>`],[V,"fieldLabel",`<${e(V.name)}></${e(V.name)}>`],[H,"infiniteScroll",`<${e(H.name)}></${e(H.name)}>`],[F,"kbd",`<${e(F.name)}></${e(F.name)}>`],[j,"label",`<${e(j.name)}></${e(j.name)}>`],[$,"layout",`<${e($.name)}></${e($.name)}>`],[B,"layoutItem",`<${e(B.name)}></${e(B.name)}>`],[L,"ligatureIcon",`<${e(L.name)}></${e(L.name)}>`],[Y,"main",`<${e(Y.name)}></${e(Y.name)}>`],[U,"messages",`<${e(U.name)}></${e(U.name)}>`],[W,"noSsr",`<${e(W.name)}></${e(W.name)}>`],[X,"otpInput",`<${e(X.name)}></${e(X.name)}>`],[J,"picker",`<${e(J.name)}></${e(J.name)}>`],[Q,"pickerTitle",`<${e(Q.name)}></${e(Q.name)}>`],[ee,"scaleTransition",`<${e(ee.name)}></${e(ee.name)}>`],[te,"scrollXReverseTransition",`<${e(te.name)}></${e(te.name)}>`],[ie,"scrollXTransition",`<${e(ie.name)}></${e(ie.name)}>`],[ne,"scrollYReverseTransition",`<${e(ne.name)}></${e(ne.name)}>`],[oe,"scrollYTransition",`<${e(oe.name)}></${e(oe.name)}>`],[ae,"selectionControl",`<${e(ae.name)}></${e(ae.name)}>`],[re,"selectionControlGroup",`<${e(re.name)}></${e(re.name)}>`],[se,"skeletonLoader",`<${e(se.name)}></${e(se.name)}>`],[le,"slideGroup",`<${e(le.name)}></${e(le.name)}>`],[de,"slideGroupItem",`<${e(de.name)}></${e(de.name)}>`],[pe,"slideXReverseTransition",`<${e(pe.name)}></${e(pe.name)}>`],[ue,"slideXTransition",`<${e(ue.name)}></${e(ue.name)}>`],[he,"slideYTransition",`<${e(he.name)}></${e(he.name)}>`],[ce,"slideYReverseTransition",`<${e(ce.name)}></${e(ce.name)}>`],[fe,"stepper",`<${e(fe.name)}></${e(fe.name)}>`],[ve,"stepperActions",`<${e(ve.name)}></${e(ve.name)}>`],[be,"stepperHeader",`<${e(be.name)}></${e(be.name)}>`],[ge,"stepperItem",`<${e(ge.name)}></${e(ge.name)}>`],[ze,"stepperWindow",`<${e(ze.name)}></${e(ze.name)}>`],[_e,"stepperWindowItem",`<${e(_e.name)}></${e(_e.name)}>`],[we,"svgIcon",`<${e(we.name)}></${e(we.name)}>`],[Pe,"validation",`<${e(Pe.name)}></${e(Pe.name)}>`],[je,"avatar","<v-avatar></v-avatar>"],[Tt,"icon","<v-icon></v-icon>"],[pt,"Color picker","<v-color-picker></v-color-picker>"],[Yt,"Parallax","<v-parallax></v-parallax>"],[fi,"theme provider","<v-theme-provider></v-theme-provider>"],[ht,"Default provider","<v-defaults-provider></v-defaults-provider>"],[Ht,"Local provider","<v-locale-provider></v-locale-provider>"],[xt,"lazy loading","<v-lazy></v-lazy>"],[Nt,"image","<v-img></v-img>"],[Zt,"aspect ratio","<v-responsive></v-responsive>"],[vi,"Timeline","<v-timeline></v-timeline>"],[bi,"Timeline","<v-timeline-item></v-timeline-item>"],[oi,"Message bar","<v-snackbar></v-snackbar>"],[Qt,"rating","<v-rating></v-rating>"],[Wt,"Progress bar","<v-progress-linear></v-progress-linear>"],[Ut,"Circular progress","<v-progress-circular></v-progress-circular>"],[wt,"hover","<v-hover></v-hover>"],[$e,"banner","<v-banner></v-banner>"],[Le,"banner","<v-banner-text></v-banner-text>"],[Be,"banner","<v-banner-actions></v-banner-actions>"],[Oe,"warning box","<v-alert></v-alert>"],[Ge,"Alert box","<v-alert-title></v-alert-title>"],[_i,"pane","<v-window></v-window>"],[wi,"pane","<v-window-item></v-window-item>"],[Dt,"Project team","<v-item></v-item>"],[kt,"item group","<v-item-group></v-item-group>"],[lt,"paper group","<v-chip-group></v-chip-group>"],[at,"Carousel item","<v-carousel-item></v-carousel-item>"],[ot,"carousel","<v-carousel></v-carousel>"],[Qe,"Button group","<v-btn-group></v-btn-group>"],[Je,"toggle button","<v-btn-toggle></v-btn-toggle>"],[ai,"spacing component","<v-spacer></v-spacer>"],[dt,"row container","<v-col></v-col>"],[ei,"row container","<v-row></v-row>"],[ct,"container","<v-container></v-container>"],[zi,"Virtual scrolling list","<v-virtualScroll></v-virtualScroll>"],[ui,"table","<v-table></v-table>"],[hi,"Multiline text box","<v-textarea></v-textarea>"],[mi,"Single-line text box","<v-textField></v-textField>"],[li,"switch","<v-switch></v-switch>"],[ni,"Slider","<v-slider></v-slider>"],[ti,"Drop-down selection box","<v-select></v-select>"],[Jt,"Range Slider","<v-range-slider></v-range-slider>"],[Xt,"Radio button group","<v-radio-group></v-radio-group>"],[Kt,"radio button","<v-radio></v-radio>"],[Ct,"Custom input box","<v-input></v-input>"],[_t,"form","<v-form></v-form>"],[zt,"Upload file","<v-fileInput></v-fileInput>"],[ut,"Combo selection box","<v-combobox></v-combobox>"],[rt,"checkbox","<v-checkbox></v-checkbox>"],[Fe,"Autocomplete","<v-autocomplete></v-autocomplete>"],[pi,"tab","<v-tab></v-tab>"],[ci,"tabs","<v-tabs></v-tabs>"],[di,"System Bar","<v-systemBar></v-systemBar>"],[Lt,"pagination","<v-pagination></v-pagination>"],[jt,"Drawer navigation","<v-navigation-drawer></v-navigation-drawer>"],[$t,"Drawer navigation","<v-navigation-item></v-navigation-item>"],[Me,"Bottom bar component","<v-footer></v-footer>"],[Ue,"Breadcrumbs","<v-breadcrumbs></v-breadcrumbs>"],[Ke,"Breadcrumbs","<v-breadcrumbs-item></v-breadcrumbs-item>"],[We,"Breadcrumbs","<v-breadcrumbs-divider></v-breadcrumbs-divider>"],[Ye,"Bottom navigation bar","<v-bottom-navigation></v-bottom-navigation>"],[Ae,"Toolbar","<v-app-bar></v-app-bar>"],[Ve,"Toolbar","<v-app-bar-nav-icon></v-app-bar-nav-icon>"],[He,"Toolbar","<v-app-bar-title></v-app-bar-title>"],[Si,"Toolbar","<v-tooltip></v-tooltip>"],[gi,"Toolbar",'<v-toolbar title="Application"></v-toolbar>'],[yi,"Toolbar","<v-toolbar-items></v-toolbar-items>"],[Ii,"Toolbar","<v-toolbar-title></v-toolbar-title>"],[Xe,"Button","<v-btn>Button</v-btn>"],[Ze,"card",'<v-card text="..."></v-card>'],[et,"card","<v-card-item></v-card-item>"],[ii,"Workspace",'<v-sheet :height="200" :width="200"></v-sheet>'],[it,"card","<v-card-text></v-card-text>"],[nt,"card","<v-card-title></v-card-title>"],[tt,"card","<v-card-subtitle></v-card-subtitle>"],[st,"paper","<v-chip>Chip</v-chip"],[mt,"Dialog",'<v-dialog\n  v-model="dialog"\n  activator="parent"\n  width="auto"\n></v-dialog'],[ft,"Component is used to separate parts of a list or layout","<v-divider></v-divider>"],[gt,"Expansion Panels components help reduce the vertical space occupied by large amounts of information. The component only displays one expansion panel by default; but you can use the multiple attribute, and the expansion panel can remain open until it is actively closed","<v-expansion-panels></v-expansion-panels>"],[bt,"Expansion panel is used to wrap the subcomponents of v-expansion-panel-text and v-expansion-panel-title",'<v-expansion-panel title="Title"\n  text="Lorem"\n></v-expansion-panel>'],[It,"Advanced expansion panel is a subcomponent used to display the title of the expandable panel. Can also be wrapped in the #title slot","<v-expansion-panel-title></v-expansion-panel-title>"],[yt,"Advanced expansion panel is a subcomponent used to display the content of the expandable panel. Can also be wrapped in the #text slot","<v-expansion-panel-text></v-expansion-panel-text>"],[Rt,"List is simply used to indicate that certain elements belong to the same set. Lists provide the same style for text and images in the same group",'<v-list lines="one"></v-list>'],[Et,"List You can use the v-list-group component to create sublists of a list. ","<v-list-group></v-list-group>"],[Pt,"list","<v-list-img></v-list-img>"],[Vt,"list","<v-list-subheader></v-list-subheader>"],[qt,"Navigation list","<v-list-item></v-list-item>"],[At,"Navigation list","<v-list-item-title></v-list-item-title>"],[Gt,"Navigation list","<v-list-item-subtitle></v-list-item-subtitle>"],[Mt,"Navigation list","<v-list-item-action></v-list-item-action>"],[Ot,"Navigation list","<v-list-item-media></v-list-item-media>"],[Ft,"Menu can display a menu at the position of an active menu element. ","<v-menu></v-menu>"],[Bt,"mask layer",'<v-overlay v-model="overlay"></v-overlay>'],[vt,"The v-empty-state component is used to indicate that a list is empty or that no search results were found.",'<v-empty-state\n      headline="Whoops, 404"\n      title="Page not found"\n      text="The page you were looking for does not exist"\n      image="https://vuetifyjs.b-cdn.net/docs/images/logos/v.png"\n    ></v-empty-state>'],[ri,"The sparkline component can be used to create simple graphs, like GitHub’s contribution chart.",'<v-sparkline\n        :fill="fill"\n        :gradient="selectedGradient"\n        :line-width="lineWidth"\n        :model-value="value"\n        :padding="padding"\n        :smooth="smooth"\n        auto-draw\n      ></v-sparkline>'],[si,"The v-speed-dial component can be used as a floating action button that can reveal additional actions when clicked.",'<v-speedDial location="bottom center" transition="fade-transition"></v-speedDial>'],[St,"The v-fab component can be used as a floating action button. This provides an application with a main point of action",'<v-fab icon="$vuetify"></v-fab>'],[K,"The v-number-input component has support for most of v-field’s props and is follows the same design patterns as other inputs",`<${e(K.name)}></${e(K.name)}>`],[Z,"The PullToRefresh allows users to update content with a simple downward swipe on their screen. Works for Mobile and Desktop",`<${e(Z.name)}></${e(Z.name)}>`],[me,"The v-snackbar-queue component is used to queue up multiple snackbar messages to be displayed to the user. Snackbars support positioning, removal delay, and callbacks.",`<${e(me.name)}></${e(me.name)}>`],[ye,"The v-snackbar-queue component is used to queue up multiple snackbar messages to be displayed to the user. Snackbars support positioning, removal delay, and callbacks.",`<${e(ye.name)}></${e(ye.name)}>`],[Ie,"The v-snackbar-queue component is used to queue up multiple snackbar messages to be displayed to the user. Snackbars support positioning, removal delay, and callbacks.",`<${e(Ie.name)}></${e(Ie.name)}>`],[Se,"The v-snackbar-queue component is used to queue up multiple snackbar messages to be displayed to the user. Snackbars support positioning, removal delay, and callbacks.",`<${e(Se.name)}></${e(Se.name)}>`],[Te,"tabsWindow",`<${e(Te.name)}></${e(Te.name)}>`],[Ne,"tabsWindowItem",`<${e(Ne.name)}></${e(Ne.name)}>`],[Ce,"The v-time-picker is stand-alone component that can be utilized in many existing Vuetify components. It offers the user a visual representation for selecting the time.",`<${e(Ce.name)}></${e(Ce.name)}>`],[De,"The v-time-picker is stand-alone component that can be utilized in many existing Vuetify components. It offers the user a visual representation for selecting the time.",`<${e(De.name)}></${e(De.name)}>`],[ke,"The v-time-picker is stand-alone component that can be utilized in many existing Vuetify components. It offers the user a visual representation for selecting the time.",`<${e(ke.name)}></${e(ke.name)}>`],[xe,"The v-treeview component is useful for displaying large amounts of nested data.",`<${e(xe.name)}></${e(xe.name)}>`],[Re,"The v-treeview component is useful for displaying large amounts of nested data.",`<${e(Re.name)}></${e(Re.name)}>`],[Ee,"The v-treeview component is useful for displaying large amounts of nested data.",`<${e(Ee.name)}></${e(Ee.name)}>`]]}function e(e){return e.replace(/([A-Z])/g,"-$1").toLowerCase().replace(/^-/,"")}function eh(){return{uiName:"vuetify3",map:Ci(),lib:"vuetify",prefix:"v"}}function th(e){return{map:Di(e),isSeperatorByHyphen:!0,prefix:"v",lib:"vuetify",directives:Ti.vuetify3}}export{eh as vuetify3,th as vuetify3Components};
//# sourceMappingURL=/sm/32c895f5e9e7086dec8ea9dd53c6d9893e41acceb62fcf8d42a4884de158c86c.map