[Vuejs]-Extend and re-assign vuetify component

0👍

You can use jsx like this

//App.js
export default {
  name : 'App',
  render(createElement){
    return createElement(
      'VCardTitle',
      'My title'
    )
  }
}
//if you want more information go to this documentation:
//https://vuejs.org/v2/guide/render-function.html#createElement-Arguments

Leave a comment