no message

Former-commit-id: dd22df84d61fb96d2e635b837db930d43ac4a048
Former-commit-id: b482b2884ee22eabd0e923e61b7ed90ffc73f168
Former-commit-id: 0c4e25572d4c9a933085be0fe5cde6085d83d7d8
This commit is contained in:
李杨
2018-03-02 22:14:39 +08:00
parent 1bb99c5eac
commit ce4616d44a
2 changed files with 21 additions and 1 deletions

View File

@@ -55,8 +55,8 @@ export default {
}
}
},
// 加载完成后显示提示
mounted () {
// 加载完成后显示提示
this.showInfo()
},
methods: {

View File

@@ -18,3 +18,23 @@
</div>
</Container>
</template>
<script>
export default {
mounted () {
// 加载完成后显示提示
this.showInfo()
},
methods: {
// 显示提示
showInfo () {
this.$notify({
title: '提示',
message: '在横向或者纵向的分割线上拖拽调整分区大小',
duration: 10000
})
}
}
}
</script>