1.0.4 • Published 3 years ago

sider-container v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

弹性侧边栏

可伸缩的弹性侧边栏vue组件,效果类似阿里云控制台

效果演示

npm.io

参数列表

参数名含义数据类型默认值示例
siderWidth侧边栏宽度(单位:px)Number200300

使用

<template>
  <sider-container :sider-width="300" style="height: 100vh"><!-- 实际业务中,height根据页面布局来确定 -->
    <template slot="sider">
      <!-- 这里填充侧边栏内容(如菜单) -->
    </template>
    <template slot="content">
      <!-- 这里填充页面内容 -->
    </template>
  </sider-container>
</template>

<script>
  import SiderContainer from 'sider-container'

  export default {
    components: {
      SiderContainer
    }
  }
</script>

使用示例

example.vue

注意事项

  • sider区域和content区域均未设置内容溢出规则,请根据设计图自行添加。
1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago