computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
499 B
15 lines
499 B
# v-text |
|
|
|
The `v-text` directive is used to set the textContent property of an element. It's important to note that when using this directive it will overwrite the HTML content inside the element. |
|
The expected input is a string, so it's important to wrap any text in single quotes. |
|
|
|
Example: |
|
```vue |
|
<template> |
|
<p v-text="'I am some text'"></p> |
|
</template> |
|
``` |
|
|
|
Visit the following resources to learn more: |
|
|
|
- [@official@v-text documentation](https://vuejs.org/api/built-in-directives.html#v-text)
|
|
|