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
Firstly, thanks for your effort on this, I love the idea of this component.
I found a problem with the way you pass the template prop to the vuep component referencing the string of code to render or the querySelection string to find the script tag of the code to render.
I keep getting an error that it can't be found because you are trying to querySelect the template element before it's even mounted. You need to change this to be done in mounted not created for vue to find that template element.
Firstly, thanks for your effort on this, I love the idea of this component.
I found a problem with the way you pass the template prop to the
vuep
component referencing the string of code to render or thequerySelection
string to find the script tag of the code to render.I keep getting an error that it can't be found because you are trying to
querySelect
thetemplate
element before it's even mounted. You need to change this to be done inmounted
notcreated
for vue to find thattemplate
element.vuep/src/components/playground.js
Lines 9 to 14 in a5486c6
vuep/src/components/playground.js
Lines 71 to 78 in a5486c6
Line 77 will never find the template on the dom
The text was updated successfully, but these errors were encountered: