本文共 682 字,大约阅读时间需要 2 分钟。
chrome63 版本后支持动态import 加载js
下面的例子需要通过服务器打开才生效哦,比如本地localhost开头的..
有一个 js 文件和 html 文件,现在可以实现不借助任何东西在浏览器里实现点击页面上的按钮加载该 js。
export default { open() { return alert('I am opening') }}
html文件
注意:import方法 返回的是一个promise对象
html
Document
注意,这里使用了vue的内置 ,依 is 的值,来决定哪个组件被渲染。
BookPage的内容
export default { name: 'BooksPage', template: ``, data() { return { message: 'Oh hai from the books page' } }};Books Page
{
{ message }}
完整的代码已放到了 上面
如果觉得文章对你有帮助,请点下下方的喜欢,谢谢!参考:
转载地址:http://uxfva.baihongyu.com/