Vuetify, how to set default props

[亡魂溺海] 提交于 2019-12-11 17:29:48

问题


I have started using Vuetify, but I am looking for a way to modify the default props on some components.

Is there a way to do this?

i.e. Instead of constantly having to write:

<v-layout wrap></v-layout>

Can I make layouts default prop for wrap be true?


回答1:


something along these lines, but beware if you are new to vue.js you'll have to do some reading:

relevant doc: vue mixin, vue extends

js

// some already existing component, you need to get it somehow
// most likely via `import <something-to-import>`
let theExternalComponent = {
  props: { wrap: { default: false, type: Boolean } },
  template: "<li>wrap:{{wrap}}</li>"
};
// this simulates the global registration
Vue.component("v-some-external-component", theExternalComponent);

// -- lets start --

// lets extend that component - and overwrite the default prop for wrap
let extendedExternalwithOtherDefaults = {
  extends: theExternalComponent,
  mixins: [{ props: { wrap: { default: true } } }],
};

var app = new Vue({
  el: "#app",
  components: { "v-my-customized-component": extendedExternalwithOtherDefaults }
});

html (pug actually but that does not matter here)

div(id="app")
  ul
    v-some-external-component

    v-some-external-component(wrap)

    v-my-customized-component
    // now defaults to wrap:true

    v-my-customized-component(:wrap="false") 
    // you can still set the wrap to false if required

output

wrap:false
wrap:true
wrap:true
wrap:false

codepen: https://codepen.io/anon/pen/MLxbEW



来源:https://stackoverflow.com/questions/54791902/vuetify-how-to-set-default-props

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!