## BaiduMap
介绍BaiduMap的使用
:::demo
``` html
<template>
  <div>
    <mg-editor :item='item'   :fa-node="faNode" :node-key="nodeKey"></mg-editor>
    <!-- <mg-map :item='item'   :fa-node="faNode" :node-key="nodeKey"></mg-map> -->
  </div>
</template>
<script>
export default {
  data () {
    return {
      nodeKey:'nodeKey',
      faNode:{},
      item: {
        label:'aaa'
      },
    }
  },
  methods: {
    click () {
      this.value = '点击过'
    }
  }
}
</script>
```
:::


<script>
export default {
  data () {
    return {
      nodeKey:'nodeKey',
      faNode:{},
      item: {
        config:{
           UEDITOR_HOME_URL: "/static/UEditor/",
           serverUrl:'http://192.168.0.28:8861/ueditor/uefile'
        },
        label:'aaa'
      },
    }
  },
  methods: {
    click () {
      this.value = '点击过'
    }
  }
}
</script>