this.$once('hook:beforeDestroy', () => {
clearInterval(timer);
})
npm install jquery
import $ from "jquery"
<template>
<div id="jquery">jquery</div>
</template>
<script>
import $ from "jquery";
export default {
created(){
$(function(){
console.log($("#jquery").html())
})
},
}
</script>