1)文字
在style标签引入
@import "路径";
/*例如:*/
@import "font/font.css";
/*此文件格式*/
@font-face {
font-family: 'FontName';
src: url('TTTGB-Medium180130.ttf');
font-weight: normal;
font-style: normal;
}
使用:
font-family: 'FontName';
2)图片
定义:
data(){
return{
url:require("../../assets/img/1.png")
}
}
或者
computed(){
setIMG(){
return require("../../assets/img/1.png")
}
}
使用
使用变量名即可
同一目录下渲染多个图片
methods: {
getImg(img) {
return '../../assets/img/' + img;
},
}
使用
<img class="xzimg" :src="getImg('1.png')" />