Custom Vue.js Components
Structure, files and registry
Vue.js Ruby component
class SomeComponent < Matestack::Ui::VueJsComponent
vue_name "some-component"
def response
div class: "some-root-element" do
plain "hello {{ vc.foo }}!"
end
end
endVue.js JavaScript component
Vue.js Ruby component API
Same as component
Referencing the Vue.js JavaScript component
Passing data to the Vue.js JavaScript component
Vue.js JavaScript component API
Component mixin and template
Params
Vue.js API
component $refs
component $el
component template/root element
Last updated