Skip to content

Commit

Permalink
wip: expose configureCompat via named export
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed May 5, 2021
1 parent f2a5a3e commit 293b41b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/vue-compat/src/esm-index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
import Vue from './index'

export default Vue
export * from '@vue/runtime-dom'

const { configureCompat } = Vue
export { configureCompat }
4 changes: 4 additions & 0 deletions packages/vue-compat/src/esm-runtime.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
import Vue from './runtime'

export default Vue
export * from '@vue/runtime-dom'

const { configureCompat } = Vue
export { configureCompat }

0 comments on commit 293b41b

Please sign in to comment.