UNPKG

@farris/ui-vue

Version:

Farris Vue, a Farris Design based Vue3 component library.

34 lines (33 loc) 988 B
/** * Progress 进度条组件用来展示进度百分比。 * * @example * ```vue * <script setup lang="ts"> * import { ref } from 'vue'; * * const progressType = 'dashboard'; * const percent = ref(75); * const size = 'small'; * const showInfo = true; * const progressStatus = 'default'; * const strokeColor = '#000000'; * const enableBackgroundImg = true; * const backgroundImg = '/farris-vue/assets/farris_design_light.png'; * </script> * <template> * <f-progress :percent="percent" :show-info="true"> * </f-progress> * </template> * ``` * * @public */ declare const _default: import("vue").DefineComponent<{ [x: string]: any; }, () => any, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, never[], never, import("vue").PublicProps, Readonly<{ [x: string]: any; }> & Readonly<{}>, { [x: string]: any; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>; export default _default;