直接上代码

时间:2024-10-11 07:15:18

<template>

  <div>

    <Input

      type="text"

      size="small"

      v-model="inputValue"

      ref="slotCardInput"

      @="handleKeyUp"

      @="executeFunc()"

    >

    </Input>

  </div>

</template>

<script>

export default {

  name: "TestQrCodeVue",

  data() {

    return {

      // 输入框内容

      inputValue: "",

      // 键盘时间触发时间

      keyupLastTime: undefined,

      // 扫码触发值

      realCode: "",

    };

  },

  methods: {

    /**

     * 键盘事件处理

     *

     * @param {object} e 键盘触发对象

     * @returns</