vue-remote-import:通过URL导入远程VUE组件

时间:2024-05-26 06:16:09
【文件属性】:

文件名称:vue-remote-import:通过URL导入远程VUE组件

文件大小:70KB

文件格式:ZIP

更新时间:2024-05-26 06:16:09

JavaScript

介绍 该模块用于通过url加载远程VUE组件。 因此,您可以在路由器,全局或本地组件参考中使用它。 这个怎么运作 它将使用import-html-entry包加载html文件,因此html文件就像组件的最小描述。 然后它将解析它,以获得html模板,样式和脚本。 但是目前只有脚本是有用的。 然后它将执行所有脚本并获得执行结果。 因此,您应该在远程组件项目中返回组件对象。 您还可以返回多个组件。 例如: 在vue路由器中: import remoteImport from 'vue-remote-import' ... let router = new Router([ { path: '/login', name: 'login', component: () => remoteImport('http://domain/components/login/index.ht


【文件预览】:
vue-remote-import-master
----package.json(1KB)
----package-lock.json(253KB)
----dist()
--------vue-remote-import.js(71KB)
----src()
--------index.js(3KB)
----.eslintrc.js(329B)
----.gitignore(13B)
----webpack.config.js(797B)
----README.md(2KB)

网友评论