Class: PhlexUI::DropdownMenu::Item

Inherits:
Base
  • Object
show all
Defined in:
lib/phlex_ui/dropdown_menu/item.rb

Instance Attribute Summary

Attributes inherited from Base

#attrs

Instance Method Summary collapse

Methods inherited from Base

#before_template

Constructor Details

#initialize(href: "#", **attrs) ⇒ Item

Returns a new instance of Item.



5
6
7
8
# File 'lib/phlex_ui/dropdown_menu/item.rb', line 5

def initialize(href: "#", **attrs)
  @href = href
  super(**attrs)
end

Instance Method Details

#view_templateObject



10
11
12
# File 'lib/phlex_ui/dropdown_menu/item.rb', line 10

def view_template(&)
  a(**attrs, &)
end