ListGroup
Last updated
bs_list_group items: [
{ text: "Cras justo odio", icon: "circle"},
{ text: "Dapibus ac facilisis in", variant: :danger },
{ text: "Dapibus ac facilisis in", badge: "42" },
{ text: "Vestibulum at eros", disabled: true }
]bs_list_group items: [
{ type: :link, path: "#list-item1", text: "Item 1" },
{ type: :link, path: "#list-item2", text: "Item 2", disabled: true }
]bs_list_group items: [
{ type: :transition, path: root_path, delay: 300, text: "Item 1" },
{ type: :transition, path: products_path, text: "Item 2", disabled: true }
]bs_row do
bs_col lg: 4 do
bs_list_group id: "list-tab", tab_nav: true,
items: [
{ type: :tab, id: :a, text: "Item 1", active: true},
{ type: :tab, id: :b, text: "Item 2" },
{ type: :tab, id: :c, text: "Item 3" }
]
end
bs_col lg: 8 do
bs_tab_nav id: "list" do
bs_tab_nav_content id: :a, active: true do
plain "A"
end
bs_tab_nav_content id: :b do
plain "B"
end
bs_tab_nav_content id: :c do
plain "C"
end
end
end
end