You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
553 B
33 lines
553 B
<template>
|
|
<div>
|
|
123
|
|
<avue-input-map :params="mapparams" placeholder="请选择地图" v-model="mapform"></avue-input-map>
|
|
<xyTinymce v-model="content"></xyTinymce>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import AvueMap from 'avue-plugin-map'
|
|
import xyTinymce from "@/components/XyTinymce/index.vue";
|
|
export default{
|
|
components: {
|
|
AvueMap,
|
|
xyTinymce
|
|
},
|
|
data(){
|
|
return{
|
|
mapparams: {
|
|
zoom: 11,
|
|
},
|
|
mapform: [],
|
|
content:''
|
|
}
|
|
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|