You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
282 B
19 lines
282 B
|
6 years ago
|
<script type="text/jsx">
|
||
|
|
export default {
|
||
|
|
name: "TwoPartRootSidebar",
|
||
|
|
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
//鼠标是否在外部,用于判断是否需要展开折叠
|
||
|
|
mouseOutside: true
|
||
|
|
}
|
||
|
|
},
|
||
|
|
|
||
|
|
methods: {},
|
||
|
|
|
||
|
|
mounted() {
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|