Input.vue 252 B

123456789101112
  1. <template>
  2. <div class="ban_incident">
  3. <el-input v-model="input" placeholder="Please input" />
  4. </div>
  5. </template>
  6. <script lang="ts" setup>
  7. import { ref } from "vue";
  8. const input = ref('')
  9. </script>
  10. <style lang="scss" scoped></style>