我有一个VueJS网站。我正在使用“直接包含”方法将其安装到我的html文件中。 https://vuejs.org/v2/guide/installation.html#Direct-lt-script-gt-Include
所以我用以下行导入VueJS:
<script src="https://unpkg.com/vue@latest/dist/vue.js"></script>
我想使用https://www.drift.com/中的“漂移聊天机器人”。他们提供了几行JS代码,从理论上讲,它将立即生效。不幸的是,由于VueJS的原因,它没有。
我找到了vue-drift
插件https://www.npmjs.com/package/vue-drift
但是他们仅提供npm
安装。
如何仅通过将其导入<script>
来使用该插件?
我尝试过:
<script src="https://unpkg.com/vue-drift@2.0.4/dist/vue-drift.min.js"></script>
但是我会遇到两个错误:
vue-drift.min.js:1 Uncaught ReferenceError: module is not defined at vue-drift.min.js:1
和
myPage.html:77 Uncaught ReferenceError: VueDrift is not defined at myPage.html
预先感谢