kun 191113 1112
This commit is contained in:
46
src/components/Scheduling.vue
Normal file
46
src/components/Scheduling.vue
Normal file
@@ -0,0 +1,46 @@
|
||||
<template>
|
||||
<div id="scheduling"></div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import E from 'wangeditor'
|
||||
var phoneEditor, _this
|
||||
export default {
|
||||
components: {},
|
||||
props: {
|
||||
schedulingVal: {
|
||||
type: String,
|
||||
required: false
|
||||
}
|
||||
},
|
||||
data () {
|
||||
return {}
|
||||
},
|
||||
created () {},
|
||||
mounted () {
|
||||
_this = this
|
||||
phoneEditor = new E('scheduling')
|
||||
phoneEditor.onchange = function () {
|
||||
_this.$emit('scheduling', this.$txt.html())
|
||||
}
|
||||
|
||||
phoneEditor.create()
|
||||
// phoneEditor.$txt.html(this.val)
|
||||
},
|
||||
methods: {},
|
||||
computed: {},
|
||||
watch: {
|
||||
schedulingVal (val) {
|
||||
// console.log(val)
|
||||
phoneEditor.$txt.html(_this.schedulingVal)
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
#scheduling {
|
||||
width: 100%;
|
||||
height: 250px;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user