This commit is contained in:
linfso 2024-05-21 14:45:12 +08:00
parent 7eedf75601
commit e3d5b41775

View File

@ -0,0 +1,44 @@
<template>
<div>
</div>
</template>
<script>
import emitter from 'element-ui/src/mixins/emitter';
export default {
name: "TanexPrinterDocker",
mixins: [emitter],
props: {
value: {
type: [String],
required: false
},
placeholder:{
type: [String],
required: false
}
},
data() {
return {
optionItems: [],
svalue: this.value,
};
},
watch: {
value(newVal) {
this.svalue = newVal;
if(this.svalue!=null) {
}
},
},
created() {
},
mounted(){
},
methods: {
}
};
</script>