0
我想在每次使用該組件時在我的vue組件中引發一個計數器。我們的目標應該是與counter
即name="tool-2"
每個使用的vue組件的鉤子函數調用
這裏的後綴名是我的.vue文件: ToolGuiComponent.vue:
<template>
<div>
<label>{{elementName}}</label>
<input type="text" :name="getCount()"></input>
</div>
</template>
<script>
export default {
name: 'tool-gui-component',
props : ['elementName'],
data : function(){
return {
counter : 0
}
},
created : function(){
this.counter++
},
methods : {
getCount : function() {
return "tool-"+this.counter
}
}
}
</script>
<style>
</style>
我與created
鉤嘗試過,但它只是提出通過計數器1.使用ready
也沒有幫助。可悲的是我找不到任何組件鉤子的API列表。