return FALSE; $r = well_tag_thread__update(array('id' => $id), $update); return $r; } function well_tag_thread_find($tagid, $page, $pagesize) { $arr = well_tag_thread__find(array('tagid' => $tagid), array('id' => -1), $page, $pagesize); return $arr; } function well_tag_thread_find_by_tid($tid, $page, $pagesize) { $arr = well_tag_thread__find(array('tid' => $tid), array(), $page, $pagesize); return $arr; } ?>javascript - Vue Splitter - Resize gutter for each SplitterPanel - Stack Overflow
最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Vue Splitter - Resize gutter for each SplitterPanel - Stack Overflow

programmeradmin1浏览0评论

We have a Splitter with three SplitterPanels. We would like the gutter between the first two panels to be fixed and the gutter between the other two panels to be moveable.

So basically we have this code:

  <Splitter class="main-splitter" :key="layoutState.splitterKey.value" :style="splitterTop" :gutterSize="0">
    <SplitterPanel>
      ...
    </SplitterPanel>
    <SplitterPanel>
      ...
    </SplitterPanel>
    <SplitterPanel>
      ...
    </SplitterPanel>
  </Splitter>

As I set gutterSize to zero in the Splitter tag, the gutter is neither moveable between the first nor between the other two panels. What I tried to get the result I want is that I set gutterSize to different values in the SplitterPanel tags instead of the Splitter tag, but that did not work out.

Is there a way to achieve what we want using Vue?

发布评论

评论列表(0)

  1. 暂无评论