45 lines
653 B
Vue
45 lines
653 B
Vue
<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>
|