250x250
Notice
Recent Posts
Recent Comments
«   2025/02   »
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28
Tags
more
Archives
Today
Total
관리 메뉴

진스

textarea 본문 길이 제한 유효성 검사하기 본문

Vue

textarea 본문 길이 제한 유효성 검사하기

입방정 2021. 4. 21. 11:42
728x90

<template >작성

<textarea id="contents" v-model="contents" rows="5" maxlength="10" />

        <p v-if="!isContentsValid">글자가 길어요</p>

 

<script >작성

 computed: {

    isContentsValid() {

      return this.contents.length < 10;

    },

728x90
Comments