Module: ViewComponent::WithContentHelper

Included in:
Base, SlotV2
Defined in:
lib/view_component/with_content_helper.rb

Instance Method Summary collapse

Instance Method Details

#with_content(value) ⇒ Object



5
6
7
8
9
10
11
12
13
# File 'lib/view_component/with_content_helper.rb', line 5

def with_content(value)
  if value.nil?
    raise ArgumentError.new("No content provided.")
  else
    @_content_set_by_with_content = value
  end

  self
end