mirror of https://github.com/vuejs/vue.git
fix(types): export more types for v3 alignment (jsx / component options)
close #13078 close #13128
This commit is contained in:
parent
73bdf14ef5
commit
895669ffa0
|
@ -1,6 +1,7 @@
|
|||
import { Vue } from './vue'
|
||||
import './umd'
|
||||
import './jsx'
|
||||
export * from './jsx'
|
||||
|
||||
export default Vue
|
||||
|
||||
|
@ -49,7 +50,12 @@ export {
|
|||
ComputedOptions as ComponentComputedOptions,
|
||||
MethodOptions as ComponentMethodOptions,
|
||||
ComponentPropsOptions,
|
||||
ComponentCustomOptions
|
||||
ComponentCustomOptions,
|
||||
ComponentOptionsMixin,
|
||||
ComponentOptionsWithoutProps,
|
||||
ComponentOptionsWithArrayProps,
|
||||
ComponentOptionsWithProps,
|
||||
ComponentOptionsBase
|
||||
} from './v3-component-options'
|
||||
export {
|
||||
ComponentInstance,
|
||||
|
|
Loading…
Reference in New Issue