We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
提供一个基于vue的实现方案:
data () { return { script: null } }, created () { const script = document.createElement('script') script.src = '//cdn.bootcss.com/canvas-nest.js/1.0.1/canvas-nest.min.js' script.type = 'text/javascript' // script.setAttribute('zIndex', 0) document.body.appendChild(script) this.script = script }, beforeDestroy () { const l = document.getElementsByTagName('script') const canvasNest = document.getElementById('c_n' + l.length) if (canvasNest) { canvasNest.remove() } if (this.script) { this.script.remove() } }
其它mvvm系统实现方案类似
The text was updated successfully, but these errors were encountered:
感谢提供方案,v2.0.1 已经可以做到了!而且这个方法可能在事件上处理不太好!
Sorry, something went wrong.
内置支持当然好了,还可以remove掉鼠标事件
No branches or pull requests
提供一个基于vue的实现方案:
其它mvvm系统实现方案类似
The text was updated successfully, but these errors were encountered: