JinZHouXiYiJi_DaPin2/examples/data/Quick/index.ts

13 lines
241 B
TypeScript
Raw Permalink Normal View History

2023-12-05 13:23:01 +08:00
import { shallowRef } from 'vue'
import handler, { QUICK_TYPE } from './handler'
import Quick from './Pane.vue'
export default {
type: QUICK_TYPE,
name: '快速数据',
component: shallowRef(Quick),
handler,
useTo: 'COMPONENT'
}