Initial import

This commit is contained in:
sas.fajri
2026-04-27 10:08:27 +07:00
commit 01c2963a43
356 changed files with 197152 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
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 }