jquery
1.下载安装
cnpm i jquery --save
2.引入
- 局部引入
<script>
// 局部引入jquery
import $ from 'jquery'
export default {
mounted(){
$('.show').click(()=>{
$('.orange').slideDown(300)
})
$('.hide').click(()=>{
$('.orange').slideUp(300)
})
}
}
</script>
- 全局引入
在main.js
// 全局引入jQUERY
import $ from 'jquery'
Vue.prototype.$ = $;
<script>
export default {
mounted(){
// 全局使用jquery
this.$('.show').click(()=>{
this.$('.orange').slideDown(300)
})
this.$('.hide').click(()=>{
this.$('.orange').slideUp(300)
})
}
}
</script>