export default {
  current: 0,
  /**
   * 标签数组，元素为对象，如[{name: '推荐'}]
   * */
  list: [],
  /**
   * 滑块移动一次所需的时间，单位ms
   * */
  duration: 300,
  /**
   * 菜单是否可滚动
   * */
  scrollable: false,
  /**
   * 滑块颜色
   * */
  lineColor: "#3c9cff",
  /**
   * 菜单选择中时的样式
   * */
  activeStyle: { color: "#303133" },
  /**
   * 菜单非选中时的样式
   * */
  inactiveStyle: { color: "#606266" },
  /**
   * 菜单item的样式
   * */
  itemStyle: { height: "44px" },
  /**
   * 从list元素对象中读取的键名
   * */
  keyName: "name"
};
