once

한 번만 실행

VueJS에서는 이벤트를 한 번만 실행할 수 있도록 이벤트 설정 시 추가로 수식어를 설정할 수 있다. 예를 들어 클릭 이벤트를 설정할 경우 다음과 같이 디렉티브 뒤에 .once 수식어를 추가할 수 있다.

<button v-on:click.once="testFunction">한 번만 호출</button>

사용 예제 - once 유뮤에 따른 이벤트 차이

<!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>Vue event</title>
</head>

<body>
    <div id="app">
        <button v-on:click="testFunction">계속 호출</button>
        <button v-on:click.once="testFunction">한 번만 호출</button>
    </div>

    <script src="https://unpkg.com/vue@next"></script>
    <script>
        const app = Vue.createApp({
            methods: {
                testFunction() {
                    window.alert("testFunction 실행");
                }
            }
        });
        app.mount("#app");
    </script>
</body>

</html>

.once 수식어가 추가된 경우 한 번 클릭 이후 이벤트가 제거됨을 확인할 수 있다.

Last updated