0
我使用Vuex從API獲取帖子和評論。現在,我有:VueJS - 計算後操縱DOM
mounted() {
this.$store.dispatch('getComments', this.post);
},
computed: {
comments() {
return this.$store.getters.orderedComments;
},
評論正文是一個包含HTML標籤的字符串。我需要從給定類的a
標籤中去除href
屬性。
cleanUnwantedLinks() {
const link = document.getElementsByClassName('link-class')[0];
link.removeAttribute('href');
}
我不知道如何致電cleanUnwantedLinks
。應該在安裝組件後立即調用它(當我有評論時)。有沒有辦法做到這一點?
也許將你的'dispatch'到'created'鉤在'mounted'掛鉤是做'cleanUnwantedLinks'? –