Vue.component('system-component', { props: ['component'], methods: { css() { if (this.component.exclude) { return "system-component-not"; } return ""; } }, template: ` in $ parent ref 0 {{component.name}} ` });