Skip to content

Instantly share code, notes, and snippets.

View Sundwell's full-sized avatar

Sundwell Sundwell

View GitHub Profile
@Sundwell
Sundwell / gist:5a235677102cf7201213db7807e9b8dd
Created July 4, 2023 22:22
Vue.js limit characters length
<template>
<input type="text" :value="value" @input="updateValue" />
{{value}}
</template>
<script>
import { ref } from "vue";
export default {
name: "App",