摘要:
直接上代码: <script setup> import {ref,nextTick } from 'vue' let inputValue = ref(null) let inputRef = ref(null) const handleInput = () => { // 获取光标位置 cons 阅读全文
摘要:
自己用到的代码 可参考代码: <template> <div> <el-input v-model="inputValue" @input="handleInput" ref="inputRef" ></el-input> </div> </template> <script> export def 阅读全文