diff --git a/src/views/base/Collapses.vue b/src/views/base/Collapses.vue index 8a884d1c..241e7b46 100644 --- a/src/views/base/Collapses.vue +++ b/src/views/base/Collapses.vue @@ -32,6 +32,39 @@ + + + Vue Collapse Horizontal + + +

+ The collapse plugin also supports horizontal collapsing. Add the + horizontal property to transition the + width instead of height and set a + width on the immediate child element. +

+ + Button +
+ + + + This is some placeholder content for a horizontal collapse. + It's hidden by default and shown when triggered. + + + +
+
+
+
Vue Collapse multi target @@ -100,10 +133,12 @@ export default { const visible = ref(false) const visibleA = ref(false) const visibleB = ref(false) + const visibleHorizontal = ref(false) return { visible, visibleA, visibleB, + visibleHorizontal, } }, }