码迷,mamicode.com
首页 > 其他好文 > 详细

vue 中使用import导入 script 在线链接

时间:2019-11-04 11:22:05      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:port   asc   文件   代码   ted   index   http   append   child   

一般我们在vue中导入另外一个文件或者文件中的方法,我们都是使用import来实现他的,那么问题来了,现在我们要导入的不是另外的一个文件,而是在线链接,这该怎么办?我们也使用了 import * as XX from ‘http://www.baidu.com‘,这样我们也试过了没用,这该咋办呢,话不多说了,直接上代码!

index.vue

<template>
    <view>哈喽!你好</view>
</template>

<script>
    export default {
        mounted() {
            const s = document.createElement(‘script‘);
            s.type = ‘text/javascript‘;
            s.src = ‘https://z1-pcok6.kuaishangkf.com/bs/ks.j?cI=736107&fI=138249&ism=1‘;
            document.body.appendChild(s);
        }
    }
</script>

希望对你们有帮助哦!我是自己用过,可以才分享给大家的,希望能得到大家的??!不好的话勿喷!

 

vue 中使用import导入 script 在线链接

标签:port   asc   文件   代码   ted   index   http   append   child   

原文地址:https://www.cnblogs.com/jie888/p/11790762.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!