util.js 293 B

123456789101112
  1. import Vue from 'vue'
  2. // import BaiduMap from '@/index.js'
  3. export const createApp = ({template = `<baidu-map></baidu-map>`, methods = {}}) => {
  4. const $root = document.createElement('div')
  5. document.body.appendChild($root)
  6. return new Vue({
  7. el: $root,
  8. template,
  9. methods
  10. })
  11. }