Class: InertiaExampleController

Inherits:
ApplicationController
  • Object
show all
Defined in:
lib/generators/inertia/install/templates/controller.rb

Instance Method Summary collapse

Instance Method Details

#indexObject



4
5
6
7
8
# File 'lib/generators/inertia/install/templates/controller.rb', line 4

def index
  render inertia: 'InertiaExample', props: {
    name: params.fetch(:name, 'World'),
  }
end