vue开发TIPS:vue-cli中实现响应式布局。原理是利用vuex实现的,没安装的童鞋装下咯。
yarn add vuex
既然是响应式布局就要准备两套css,一个是PC端的css,一个是移动端的css,我们暂且将PC端的样式称为computer,移动端的样式称为mobile
我们首先要做的就是当前屏幕的宽度
state: {
screenWidth: document.documentElement.clientWidth,
screenHeight: document.documentElement.clientHeight
}
这是vuex的state,我们后续还要实时监控屏幕宽度,所以还需要提供一个改变screenWidth的方法,于是我又写了一mutations。
mutations: {
setWidth (state, value) {
state.screenWidth = value
},
setHeight (state, value) {
state.screenHeight = value
}
}
这样我们的vuex的文件就写好了,而后就是APP.vue,我们需要在这个文件下添加一个window.onresize事件实时更新vuex中的screenWidth值,在这里我们使用了辅助函数。
import { mapState, mapMutations } from 'vuex'
在mounted钩子函数中添加事件。
mounted () {
window.onresize = () => {
this.setWidth(document.documentElement.clientWidth)
}
}
这样好比说我们网页中的导航,移动端时我们需要它在底部,PC端时我们需要它在顶部,这样我们就可以在nav.vue这个组件中用watch或computed监听screenWidth的值,这里我们用的是computed。
<ul :class="computedPhone">//根据screenWidth提供不同的class名
<router-link to='/file' tag="li" active-class="active">电影</router-link>
<router-link to='/cinma' tag="li" active-class="active">影院</router-link>
<router-link to='/center' tag="li" active-class="active">个人中心</router-link>
</ul>
computed: {
...mapState('stylesheet', ['screenWidth']),
computedPhone () {
if (this.screenWidth < 1024) {
return 'mobile'
} else {
return 'computer'
}
}
}
放到软件里试试吧。不懂的可以加群讨论咯。