51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

uniapp vue3获取input标签数据

uni-app Vue3获取input表单数据示例

<template>
	<input type="text" placeholder="输入名称查询" v-model="searchKeyword" />
 	<a-button @click="search">搜索</a-button>
</template>
<script setup>
  import { defineComponent, ref, reactive } from 'vue';
  import { fetchCategories } from "@/api/toolList";
  const searchKeyword = ref(null)
  console.log(searchKeyword.value)
})
</script>
赞(0)
未经允许不得转载:工具盒子 » uniapp vue3获取input标签数据