Appearance
常用的Input。
<template> <lcl-input v-model="input"></lcl-input> {{input}} </template> <script> import { defineComponent, ref } from 'vue'; export default defineComponent({ name: 'Input', setup() { const input = ref(''); return { input }; }, }); </script>