File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 3131 },
3232 "./*" : " ./*" ,
3333 "./volar" : " ./dist/volar.d.ts" ,
34- "./style" : " ./dist/es/style .css"
34+ "./style" : " ./dist/es/styles .css"
3535 },
3636 "main" : " dist/lib/index.js" ,
3737 "module" : " dist/es/index.js" ,
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ import { createInstaller } from './utils/installer'
44export * from './components'
55export * from './resolver'
66
7- export const install = createInstaller ( components )
7+ const installer = createInstaller ( components )
88
9- export default install
9+ export const install = installer . install
10+
11+ export default installer
Original file line number Diff line number Diff line change 11import { installWithSFC } from '../utils'
22import SayHello from './SayHello.vue'
33
4+ export type SayHelloInstance = InstanceType < typeof SayHello >
5+
46export const StSayHello = installWithSFC ( SayHello )
57
68export default StSayHello
You can’t perform that action at this time.
0 commit comments