摘要: 直接上代码: <script setup> import {ref,nextTick } from 'vue' let inputValue = ref(null) let inputRef = ref(null) const handleInput = () => { // 获取光标位置 cons 阅读全文
posted @ 2023-05-26 16:25 WinnieIns 阅读(778) 评论(0) 推荐(0) 编辑
摘要: 自己用到的代码 可参考代码: <template> <div> <el-input v-model="inputValue" @input="handleInput" ref="inputRef" ></el-input> </div> </template> <script> export def 阅读全文
posted @ 2023-05-26 14:53 WinnieIns 阅读(593) 评论(0) 推荐(0) 编辑