Vue滑动验证
created() {
const url = 'https://ssl.captcha.qq.com/TCaptcha.js'
const script = document.createElement('script')
script.type = 'text/javascript'
script.src = url
document.body.appendChild(script)
script.onload = () => {
console.log(window...