2022-11-21 21:45:44 251阅读 0喜欢
17
2022-09-12 08:01:18 17阅读 0喜欢
this.$once('hook:beforeDestroy', () => {
   clearInterval(timer);
})
783访问人次
Camila Waz 2022-01-22 18:22:10
2021-11-16 09:32:05 35阅读 0喜欢
2020-12-16 10:17:07 132阅读 0喜欢
96
2020-11-04 15:42:30 96阅读 0喜欢
vue特定页面中需jQuery时页面引用方式
  • 1、npm install jquery
  • 2、在页面中import $ from "jquery"
<template>
  <div id="jquery">jquery</div>
</template>

<script>
import $ from "jquery";
export default {
  created(){
    $(function(){
      console.log($("#jquery").html())
    })
  },  
}
</script>