vue引入没有使用export导出的js文件


<template>
  <div class="about">
    <h1 class="title">This is an about page</h1>
  </div>
</template>
<script>
import '../assets/jquery-1.8.3.min.js'
export default{
    data(){
        return{

        }
    },
    created(){
        
    },
    mounted(){
                console.log($('h1.title').text()) //This is an about page
$('h1.title').css('background','#eee') } 
}
</script>

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM