使用万能的that.$nextTick!
that.$nextTick(function () {
that.init();
})
$(function () {
var dataMap = new Vue({
el: "#content",
data: function () {
return {
}
},
created: function () {
this.maplist();
},
methods: {
maplist:function(){
var that = this
that.$nextTick(function () {
that.init();
})
},
init: function () {
var map = new AMap.Map('container', {
zoom: 11,//级别
center: [116.397428, 39.90923],//中心点坐标
viewMode: '3D'//使用3D视图
});
}
},
})
})
网友评论