UNPKG

@squirrel-cloud/ui-vue

Version:

松鼠的坚果屋前端VUE框架

32 lines (31 loc) 572 B
import { Component } from 'vue'; import { ProgressProps } from '..'; /** * 回到顶部属性 */ export interface BacktopProps { /** * 是否显示进度条 */ progress?: boolean; /** * 图标 */ icon?: Component; /** * 过渡动画 */ transition?: string; /** * 出现时最小滚动高度 */ visibilityHeight?: number; /** * 触发滚动的对象 */ target?: string; /** * 进度条配置 */ progressProps?: Pick<ProgressProps, 'stroke' | 'color' | 'type'>; }