jquery加载单文件vue组件方法分享
程序员文章站
2022-04-05 18:49:46
...
本文主要介绍了jquery加载单文件vue组件的方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下,希望能帮助到大家。
/**注册组件 */ function registerComponent(name){ dm[name] = {}; Vue.component(name + '-component', function(resolve, reject){ $.get('./modules/' + name + '.vue').then(function(rv){ var temp = rv.match(/<template[^>]*>([\s\S]*?)<\/template>/)[1].replace(/(^\s+)|\n/g, ''), script = rv.match(/<script[^>]*>([\s\S]*?)<\/script>/)[1].replace(/(^\s+)|\n/g, ''); script = (new Function('return ' + script))(); script.template = temp; script.props || (script.props=["param"]); script.data || (script.data=function(){ return JSON.parse(JSON.stringify(this.param))}); resolve(script); }).catch(function(err){ console.error(err); resolve({ template: '<p style="text-align:center; line-height:5em;">NOT FOUND</p>' }); }); }); }
相关推荐:
以上就是jquery加载单文件vue组件方法分享的详细内容,更多请关注其它相关文章!
上一篇: nginx服务器纳闷析PHP
下一篇: php环境配置