var sampleStationComponent = { props : ['label'], template : ` `, data () { return { items: ['Laboratorium', 'Lain - lain'] } }, computed : { _label () { if (this.label) return this.label; return "Sample Station"; } } } export { sampleStationComponent }