局自定义动画侧菜单控制器。
安装:
gem 'bureau', '>=0.1.9', git: 'git://github.com/pachun/bureau.git'
用法:
构造函数采用一个需要structure键的散列:
brueau = Bureau::Bureau.new(structure: [])
structure键的值必须正确格式化,否则会引发错误。
结构:
简单地说,它是一个散列数组,每个散列代表侧边菜单中的一个部分。因此,以下内容对于创建仅包含节标题的表是有效的:
structure = [
{title: \"Section 1\"},
{title: \"Section 2\"},
{title: \"Section 3\"}
]
Bureau::Bureau.new(structure: structure)
暂无评论