JonWatkins / vue-runtime-template-compiler

A simple Vue component to compile templates at runtime
https://jonwatkins.github.io/vue-runtime-template-compiler/
MIT License
42 stars 8 forks source link

Support on Vue 3.0 #9

Closed ambrosekwok closed 3 years ago

ambrosekwok commented 4 years ago

Hello,

I try to use vue-runtime-template-compiler on Vue 3.0, but I got below error. May I know if this package support vue 3.0?

Thank you.

Uncaught TypeError: Cannot read property '_c' of undefined at Proxy.eval (webpack-internal:///./node_modules/vue-runtime-template-compiler/dist/vue-runtime-template-compiler.esm.js:3) at renderComponentRoot (webpack-internal:///./node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js:794) at componentEffect (webpack-internal:///./node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js:4113) at reactiveEffect (webpack-internal:///./node_modules/@vue/reactivity/dist/reactivity.esm-bundler.js:71) at effect (webpack-internal:///./node_modules/@vue/reactivity/dist/reactivity.esm-bundler.js:46) at setupRenderEffect (webpack-internal:///./node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js:4096) at mountComponent (webpack-internal:///./node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js:4054) at processComponent (webpack-internal:///./node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js:4014) at patch (webpack-internal:///./node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js:3636) at componentEffect (webpack-internal:///./node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js:4131)

Ambrose