|
|
@ -19,8 +19,8 @@ export default { |
|
|
|
</script> |
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
|
|
<style lang="less"> |
|
|
|
<style lang="less"> |
|
|
|
//拖拽控件全局样式 |
|
|
|
|
|
|
|
:global{ |
|
|
|
:global{ |
|
|
|
|
|
|
|
//拖拽控件全局样式 |
|
|
|
.dragable-ghost{ |
|
|
|
.dragable-ghost{ |
|
|
|
border: 1px dashed #aaaaaa; |
|
|
|
border: 1px dashed #aaaaaa; |
|
|
|
opacity: 0.65; |
|
|
|
opacity: 0.65; |
|
|
@ -33,5 +33,16 @@ export default { |
|
|
|
border: 1px dashed #aaaaaa; |
|
|
|
border: 1px dashed #aaaaaa; |
|
|
|
opacity: 0.65; |
|
|
|
opacity: 0.65; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
//页面切换动画 |
|
|
|
|
|
|
|
.page-toggle-enter-active{ |
|
|
|
|
|
|
|
transition: all 0.2s ease-in 0.25s; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
.page-toggle-leave-active{ |
|
|
|
|
|
|
|
transition: all 0.2s ease-out 0s; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
.page-toggle-enter, .page-toggle-leave-to{ |
|
|
|
|
|
|
|
opacity: 0; |
|
|
|
|
|
|
|
padding: 0px; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
</style> |
|
|
|
</style> |
|
|
|