Class: VueDemoController

Inherits:
ApplicationController
  • Object
show all
Defined in:
lib/source/app/controllers/vue_demo_controller.rb

Instance Method Summary collapse

Instance Method Details

#barObject



4
5
6
# File 'lib/source/app/controllers/vue_demo_controller.rb', line 4

def bar
  render vue: 'bar' # same as `render html: vue_entry('bar'), layout: true`
end

#bazObject



8
9
10
# File 'lib/source/app/controllers/vue_demo_controller.rb', line 8

def baz
  render html: vue_entry('foo') # same as `render vue: 'foo', layout: false`
end