Files
FE_CPONE/mockup/fo/fo02/components/sampleStationComponent.js
2026-04-27 10:08:27 +07:00

27 lines
500 B
JavaScript

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