1.样式重置
[v-cloak]{
display: none;
}
<div id="app" v-cloak></div>
.row > div >.content{
padding: 0;
}
define(['vue', 'ELEMENT', 'axios','vuescroll','httpvueloader'],function(Vue, ELEMENT, axios,vuescroll,httpVueLoader){
//安装elementui
Vue.use(ELEMENT)
//修改滚动条组件默认配置
Vue.use(vuescroll,{
ops: {
vuescroll: {
},
scrollPanel: {},
rail: {
size: '4px',
},
bar: {
background:"rgba(120,120,120,0.4)",
size: '4px',
}
} // 在这里设置全局默认配置
})
//挂载axios
Vue.prototype.$axios = axios
})
- 引入自定义容器(带边框,最小高度100%),该容器支持mounted事件,参数为容器的高度
Vue.component('ep-container', httpVueLoader('/assets/vue-components/ep-container.vue'))