管道式消毒机
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
195 B

2 years ago
  1. <template>
  2. <input id="input" type="text" name="" />
  3. </template>
  4. <script setup>
  5. import { onMounted } from 'vue'
  6. onMounted(() => {
  7. $('#input').virtualkeyboard()
  8. })
  9. </script>
  10. <style></style>