こちらを参考にしてvueの中でjqueryのプラグインを使おうと思い
npm
1npm install jquery --save
を実行し
vueのmain.jsに
main
1import jquery from 'jquery' 2global.jquery = jquery 3global.$ = jquery 4window.$ = window.jQuery = require('jquery')
と記述してscriptの中でjqueryを使おうとしたところ'$' is not defined
とエラーが出て進まなくなってしまいました。
原因がわかる方、ご教授願いします。
追記
jqueryを書き込んだところは
vue
1<template> 2 <div id="countdown1"> 3 <main> 4 <div class="countdown"> 5 6 </div> 7 </main> 8 </div> 9</template> 10 11<script> 12export default { 13 props: { 14 day: Number, 15 hour: Number, 16 min: Number, 17 sec: Number, 18 timeout: Boolean 19 }, 20 mounted:function() { 21 // $('#countdown1').fireworks({ 22 // sound: true, // sound effect 23 // opacity: 0.9, 24 // width: '100%', 25 // height: '100%' 26 // }) 27 } 28} 29</script>
回答2件
あなたの回答
tips
プレビュー