class Matestack::Ui::VueJs::Components::Collection::Content

Public Instance Methods

response() { || ... } click to toggle source
# File lib/matestack/ui/vue_js/components/collection/content.rb, line 12
def response
  div class: "matestack-ui-core-collection-content" do
    yield
  end
end
vue_props() click to toggle source
# File lib/matestack/ui/vue_js/components/collection/content.rb, line 18
def vue_props
  {
    id: ctx.id,
    init_limit: ctx.init_limit,
    filtered_count: ctx.filtered_count,
    base_count: ctx.base_count
  }
end