我在VUE中创建了这个组件:
GISMap
现在我想将模板中定义的id initGISMap
传递给我的write(String s, int off, int len)
Writes a portion of a String.
函数,以便创建地图。但是如何正确传递此标记?
答案 0 :(得分:1)
您可以使用Vue道具:http://vuejs.org/api/#props
<template>
<div class="col-md-6">
<div id="GISMap" :id="GISMap" v-el:map></div>
</div>
</template>
然后在你的组件内:
props: ['id'],
您可以像访问数据属性一样从方法中访问它。
例:
console.log(this.id)
这将输出GISMap