I want to use the HTML-Symbols ▲
and ▼
that stand for “arrow up” and “arrow down” in the <script>
section of my Vue.js component. I know that something simple as the following doesn’t work. But I tried different functions that I found on the internet and nothing worked.
JavaScript
x
2
1
this.$refs["span-1"].textContent = "▲";
2
Advertisement
Answer
There are two ways to achieve this :
- Use
v-html
directive
JavaScript
1
6
1
new Vue({
2
el: '#app',
3
data: {
4
content: "▲"
5
}
6
})
JavaScript
1
4
1
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17/vue.js"></script>
2
<div id="app">
3
<p v-html="content"></p>
4
</div>
- Use
innerHTML
instead oftextContent
JavaScript
1
6
1
new Vue({
2
el: '#app',
3
mounted() {
4
this.$refs.myTag.innerHTML = "▲";
5
}
6
})
JavaScript
1
4
1
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17/vue.js"></script>
2
<div id="app">
3
<p ref="myTag"></p>
4
</div>