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>

猜你喜欢

转载自www.cnblogs.com/liangban/p/11528450.html