1
新建一个html文件,命名为test.html,用于讲解html中如何导入css。
请点击输入图片描述
2
在test.html文件内,使用div创建一个模块,下面将对该div进行css样式的定义。
请点击输入图片描述
3
在test.html文件内,设置div的class属性为mydiv,主要用于css文件对该类名进行样式定义。
请点击输入图片描述
4
新建一个css文件夹,在文件夹内创建一个css文件,命名为test.css,用于编写css样式。
请点击输入图片描述
5
在test.css文件内,使用div的类名进行样式定义,设置div的宽度、高度均为200px,背景颜色为黄色。
请点击输入图片描述
6
在test.html文件内,使用link标签导入test.css样式文件,href为css路径。
请点击输入图片描述
7
在浏览器打开test.html文件,查看实现的效果。
在vue中导入自定义的css文件或js文件
css文件
在main.js中导入公共的css
import '../static/css/common.css' //引入公用css
在页面中引入单独css
<style scoped>
@import '../../static/css/header.css'
</style>
Js文件
自定义js 中写:
function title(t){
alert(t)
}
export {
title //多个方法在此处json中export出去
}
页面中使用:
<template>
<div>
<button class="btn" @click="clickme">click me</button>
</div>
</template>
<script>
import {title} from './js/common.js' //可以选择需要的方法引入
export default {
data(){
return{
}
},
methods:{
clickme(){
title('你点我了')
}
}
}
</script>
或者
import Comjs from './js/common.js' //引入公用js
Vue.prototype.$comjs = Comjs//添加到vue属性中
自定义js 中写:
const comjs = {
}
comjs.title = function (title) {
alert(title)
}
export default comjs
页面中使用:
<template>
<div>
<button class="btn" @click="clickme">click me</button>
</div>
</template>
<script>
export default {
data(){
return{
}
},
methods:{
clickme(){
this.$comjs.title('你点我了')
}
}
}
</script>