Vue 監(jiān)聽元素前后變化值實(shí)例
我就廢話不多說了,大家還是直接看代碼吧~
export default {
data() {
return {
item: ''
}
},
watch: {
item(now, before){
let remove = before.filter(x => now.indexOf(x) == -1);
let add = now.filter(x => before.indexOf(x) == -1);
/* 顯示字符串或數(shù)組元素的增加和減少 */
console.log(add, remove);
}
}
}
補(bǔ)充知識:Vuejs+Element監(jiān)聽-window.resize-el-menu響應(yīng)式顯示
效果

代碼
template
<template>
<div class="sidebar">
<!-- 折疊按鈕 -->
<div class="collapse-btn" @click="collapseChage">
<i class="el-icon-d-arrow-left" v-show="!collapse" title="收起">
<small>收縮側(cè)邊欄</small>
</i>
<i class="el-icon-d-arrow-right" v-show="collapse" title="展開"></i>
</div>
<el-menu
class="sidebar-el-menu"
:default-active="onRoutes"
:collapse="collapse"
text-color="#8d9199"
active-text-color="#20a0ff"
unique-opened
router
>
<template v-for="item in items">
<template v-if="item.subs">
<el-submenu :index="item.index" :key="item.index">
<template slot="title">
<i :class="item.icon"></i>
<span slot="title">{{ item.title }}</span>
</template>
<template v-for="subItem in item.subs">
<el-submenu v-if="subItem.subs" :index="subItem.index" :key="subItem.index">
<template slot="title">
<i :class="subItem.icon"></i>
{{ subItem.title }}
</template>
<el-menu-item
v-for="(threeItem,i) in subItem.subs"
:key="i"
:index="threeItem.index"
>{{ threeItem.title }}</el-menu-item>
</el-submenu>
<el-menu-item v-else :index="subItem.index" :key="subItem.index">
<i :class="subItem.icon"></i>
{{ subItem.title }}
</el-menu-item>
</template>
</el-submenu>
</template>
<template v-else>
<el-menu-item :index="item.index" :key="item.index">
<i :class="item.icon"></i>
<span slot="title">{{ item.title }}</span>
</el-menu-item>
</template>
</template>
</el-menu>
<div>
<i class="el-icon-d-arrow-right" v-show="collapse" title="展開"></i>
</div>
</div>
</template>
javascript
<script>
import bus from "./bus";
import { menu } from "../../data/menu";
export default {
data() {
return {
collapse: false,
items: menu,
screenWidth: 1000
};
},
computed: {
onRoutes() {
return this.$route.path.replace("/", "");
}
},
created() {
// 通過 Event Bus 進(jìn)行組件間通信,來折疊側(cè)邊欄
bus.$on("collapse", msg => {
this.collapse = msg;
});
},
mounted() {
// if (document.body.clientWidth < 1500) {
// this.collapseChage();
// }
const that = this;
window.addEventListener("resize", function() {
return (() => {
window.screenWidth = document.body.clientWidth;
that.screenWidth = window.screenWidth;
})();
});
},
watch: {
screenWidth(val) {
if (!this.timer) {
this.screenWidth = val;
this.timer = true;
let that = this;
setTimeout(function() {
// that.screenWidth = that.$store.state.canvasWidth
console.log(that.screenWidth);
that.auto();
that.timer = false;
}, 400);
}
}
},
methods: {
// 側(cè)邊欄折疊
collapseChage() {
this.collapse = !this.collapse;
bus.$emit("collapse", this.collapse);
},
auto() {
if (this.screenWidth < 1200) {
console.log("收起來");
this.collapse = true;
bus.$emit("collapse", true);
} else {
console.log("展開");
this.collapse = false;
bus.$emit("collapse", false);
}
}
}
};
</script>
css
<style scoped>
.sidebar {
z-index: 1024;
display: block;
position: fixed;
left: 0;
top: 70px;
bottom: 0;
overflow-y: scroll;
}
.sidebar::-webkit-scrollbar {
width: 0;
}
.sidebar-el-menu:not(.el-menu--collapse) {
width: 200px;
}
.sidebar > ul {
height: 100%; /*寫給不支持calc()的瀏覽器*/
height: calc(100% - 52px);
top: 30px;
background-color: rgb(235, 239, 243);
border-top: 1px solid #d6d6d6;
}
.sidebar > ul > li,
.sidebar > ul > li div {
background-color: rgb(235, 239, 243);
}
.sidebar > ul > li > ul {
background-color: rgb(235, 239, 243);
}
.el-menu {
background-color: rgb(235, 239, 243);
}
i {
margin-right: 10px;
}
.collapse-btn {
height: 30px;
width: 100%;
cursor: pointer;
line-height: 30px;
position: absolute;
top: 0;
left: 0;
background-color: #f4f6fa;
color: #fff;
text-align: center;
overflow: hidden;
box-sizing: border-box;
box-shadow: 0 5px 10px #ddd;
}
.collapse-btn i {
color: #8d9199;
padding: 1px;
cursor: pointer;
overflow: hidden;
text-overflow: ellipsis;
}
/* .collapse-btn:before{
content: "";
display: block;
height: 0;
border-top: 1px dotted #909399;
position: absolute;
left: 15px;
right: 15px;
top: 18px;
} */
</style>
##注意⚠️
此開發(fā)框架是github 名為 lin-xin 的 vue-manage-system
因公司項目需要兼容iPad,故而修改
詳細(xì)代碼點(diǎn)擊這里
以上這篇Vue 監(jiān)聽元素前后變化值實(shí)例就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持腳本之家。
相關(guān)文章
多頁vue應(yīng)用的單頁面打包方法(內(nèi)含打包模式的應(yīng)用)
這篇文章主要介紹了多頁vue應(yīng)用的單頁面打包方法(內(nèi)含打包模式的應(yīng)用),文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2020-06-06
vue-router 源碼實(shí)現(xiàn)前端路由的兩種方式
這篇文章主要介紹了vue-router 源碼實(shí)現(xiàn)前端路由的兩種方式,主要介紹Hash 路由和History 路由,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2018-07-07
Vue使用wangeditor創(chuàng)建富文本編輯器的完整指南
WangEditor是一個開源的富文本編輯器,由阿里云開發(fā),它提供了一套簡潔易用的API和豐富的功能,如拖拽上傳圖片、插入表格、自定義表情等,適用于網(wǎng)頁和移動應(yīng)用中的內(nèi)容編輯場景,本文介紹了Vue使用wangeditor創(chuàng)建富文本編輯器的完整指南,需要的朋友可以參考下2024-08-08
VUE利用vuex模擬實(shí)現(xiàn)新聞點(diǎn)贊功能實(shí)例
本篇文章主要介紹了VUE利用vuex模擬實(shí)現(xiàn)新聞點(diǎn)贊功能實(shí)例,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2017-06-06
關(guān)于Vue.js一些問題和思考學(xué)習(xí)筆記(2)
這篇文章主要為大家分享了關(guān)于Vue.js一些問題和思考的學(xué)習(xí)筆記,具有一定的參考價值,感興趣的小伙伴們可以參考一下2016-12-12
Vue2.0利用 v-model 實(shí)現(xiàn)組件props雙向綁定的優(yōu)美解決方案
本篇文章主要介紹了Vue2 利用 v-model 實(shí)現(xiàn)組件props雙向綁定的優(yōu)美解決方案,具有一定的參考價值,感興趣的小伙伴們可以參考一下。2017-03-03
vue.js添加一些觸摸事件以及安裝fastclick的實(shí)例
今天小編就為大家分享一篇vue.js添加一些觸摸事件以及安裝fastclick的實(shí)例,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2018-08-08

