1. 程式人生 > >vue項目引入第三方js插件,單個js文件引入成功,使用該插件方法時報錯

vue項目引入第三方js插件,單個js文件引入成功,使用該插件方法時報錯

question play 文件引入 clas ons 不定 AS npm安裝 col

1、引入第三方js文件,npm安裝不了

技術分享圖片

2、控制臺顯示引入成功

技術分享圖片

3、在methods下使用

技術分享圖片

圖片看不清請看下面代碼

 updateTime() {
        setInterval(()=>{
          var cd = new Date();
          var lunar = calendarNU.solar2lunar();//此處是引用插件方法
          this.time = this.$options.methods.zeroPadding(cd.getHours(), 2) + : + this.$options.methods.zeroPadding(cd.getMinutes(), 2
) + : + this.$options.methods.zeroPadding(cd.getSeconds(), 2); this.calendar = this.$options.methods.zeroPadding(cd.getFullYear(), 4) + - + this.$options.methods.zeroPadding(cd.getMonth()+1, 2) + - + this.$options.methods.zeroPadding(cd.getDate(), 2) + + this.week[cd.getDay()]; },
1000) },

4、控制臺顯示使用該插件方法報錯

技術分享圖片

怎麽能使用引入的單個js裏的方法?

實在搞不定,我的黑長直都要變成黃分叉了,先謝謝大夥了

vue項目引入第三方js插件,單個js文件引入成功,使用該插件方法時報錯