13 lines
241 B
TypeScript
13 lines
241 B
TypeScript
|
|
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'
|
||
|
|
}
|