You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constComp=Vue.extend({setup(){consta=ref(1);return{
a
};},render(){return<div>{(thisasany).a.value}</div>}});constvm=(newComp()).$mount();// ok
constComp=Vue.extend({setup(){consta=ref(1);return()=><div>{a.value}</div>},});constvm=(newComp()).$mount();// [Vue warn]: Failed to mount component: template or render function not defined.
#151
#38
workaround
The text was updated successfully, but these errors were encountered: