访问vue组件中的ID标记

时间:2016-05-11 10:22:23

标签: javascript vue.js

我在VUE中创建了这个组件:

GISMap

现在我想将模板中定义的id initGISMap传递给我的write(String s, int off, int len) Writes a portion of a String. 函数,以便创建地图。但是如何正确传递此标记?

1 个答案:

答案 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