Skip to content

Commit

Permalink
fix: add proxyRefs to legacy runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
wattanx committed May 9, 2024
1 parent 19f4d95 commit e025dea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/bridge/src/runtime/capi.legacy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ export {
watchPostEffect,
watchSyncEffect,
defineAsyncComponent,
proxyRefs
} from 'vue'

export { ref }
Expand All @@ -78,7 +79,6 @@ const warnOnce = (id, message) => {
export const createApp = () => unsupported('`createApp` is not provided by Vue 2.7.')
export const createRef = () => unsupported('`createRef` is not provided by Vue 2.7.')
export const isRaw = () => unsupported('`isRaw` is not provided by Vue 2.7.')
export const proxyRefs = () => unsupported('`proxyRefs` is not provided by Vue 2.7.')
export const warn = () => unsupported('`warn` is not provided by Vue 2.7.')

// Warn in case of having any imports from `@nuxtjs/composition-api`
Expand Down

0 comments on commit e025dea

Please sign in to comment.