v-text

Vue text 출력

v-text 키워드를 사용하여 태그 내부 텍스트(textContent)를 설정할 수 있다. 단, 기존에 작성된 내용은 사라지므로 사용 시 주의해야 한다.

<태그 v-text="데이터"></태그>

사용 예제

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Welcome to Vue JS 3</title>
</head>
<body>
    <div id="app">
        <input type="text" v-model="message">
        <div v-text="message"></div>
    </div>

    <script src="https://unpkg.com/vue@next"></script>
    <script>
        const app = Vue.createApp({
            data(){
                return {
                    message : "<h1>Hello VueJS!</h1>"
                };
            }
        });
        app.mount("#app");
    </script>
</body>
</html>

v-text로 설정할 경우 데이터를 텍스트로 인식하여 태그 등이 효과를 발휘할 수 없다. 템플릿 출력과의 차이점은 다음 문서를 확인한다.

Last updated