我的用例中遇到Vue-multipane组件问题而我找不到解决方案。
我试图在屏幕尺寸小于768px时禁用多面板并显示全宽行而不是列。所以我的页面在移动设备上更好用。
现在我遇到两个问题:
(缺少句柄)
缩小到767px(应最大化为100%) - 减少窗格比减小窗口宽度:
它看起来应该是这样(在页面加载时它正确显示):
请查看此fiddle或以下代码。
但是最好去jsfiddle,因为它更容易调整大小并测试上述行为。
我试图解决这些问题:
flex-grow: 1
和width: 100%;
添加到left-pane
的媒体查询中,但这不起作用。注意:我已经使用Firefox测试了代码。
//console.log(Multipane, window)
const PageBreak = {
data() {
return {
screenWidth: document.documentElement.clientHeight,
}
},
computed: {
largeScreen () {
return this.screenWidth > 768; // 10px for handle
}
},
// bind event handlers to the `handleResize` method (defined below)
mounted: function () {
window.addEventListener('resize', this.handleResize)
},
beforeDestroy: function () {
window.removeEventListener('resize', this.handleResize)
},
methods: {
// whenever the document is resized, re-set the 'fullHeight' variable
handleResize (event) {
this.screenWidth = document.documentElement.clientWidth
}
}
}
new Vue({
el: '#app',
mixins: [ PageBreak ]
})
.custom-resizer {
width: 100%;
height: 400px;
}
.custom-resizer > .pane {
text-align: left;
padding: 15px;
overflow: hidden;
background: #eee;
border: 1px solid #ccc;
}
.custom-resizer > .multipane-resizer {
margin: 0;
left: 0;
position: relative;
}
.custom-resizer > .multipane-resizer:before {
display: block;
content: "";
width: 3px;
height: 40px;
position: absolute;
top: 50%;
left: 50%;
margin-top: -20px;
margin-left: -1.5px;
border-left: 1px solid #ccc;
border-right: 1px solid #ccc;
}
.custom-resizer > .multipane-resizer:hover:before {
border-color: #999;
}
.left-pane {
width: 50%;
}
@media (max-width: 768px) {
/* stack panes if smaller than 768px*/
.multipane.layout-v {
/*flex-direction: column;*/
display: block;
}
.left-pane {
/*flex-grow: 1;*/
/* how to maximize left-pane if it was shrinked before? */
width: 100%;
}
}
<link href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.5.3/css/bulma.min.css" rel="stylesheet"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.4.4/vue.js"></script>
<script src="https://unpkg.com/vue-multipane@0.9.5/dist/vue-multipane.min.js"></script>
<div id="app">
<multipane class="custom-resizer" layout="vertical">
<div class="pane left-pane">
<div>
<h6 class="title is-6">Pane 1</h6>
</div>
</div>
<multipane-resizer v-if="largeScreen"></multipane-resizer>
<div class="pane" :style="{ flexGrow: 1 }">
<div>
<h6 class="title is-6">Pane 2</h6>
</div>
</div>
<!--<multipane-resizer></multipane-resizer>
<div class="pane" :style="{ flexGrow: 1 }">
<div>
<h6 class="title is-6">Pane 3</h6>
</div>
</div>-->
</multipane>
</div>
答案 0 :(得分:0)
我想我找到了解决问题的方法。 (具有分页位置的句柄问题修复有点hacky但有效。)
让我解释一下我做了什么:
full_width
,以使用此Vue代码width: 100% !important
:class="{full_width: !largeScreen}"
largeScreen
的计算属性中我会像这样返回它:return this.screenWidth > (768 - 17);
(我已通过控制台记录屏幕大小来测试它。)请查看此fiddle。
我已经解决了句柄问题,以及如果我将位置改为17px,它的工作原理 - 请告诉我。
解决方案没问题,似乎对我有用。也许我在Vue-multipane repo上提出了一个问题。对于一个功能请求,因为它可能更容易直接添加到Multipane组件中,如果传递一个属性的断点就可以了。