14 lines
351 B
TypeScript
14 lines
351 B
TypeScript
|
import { defineComponent } from 'vue'
|
||
|
|
||
|
export default defineComponent(() => {
|
||
|
return () => (
|
||
|
<div class={'w-full h-full p-3'}>
|
||
|
<input
|
||
|
type="text"
|
||
|
placeholder='搜索目标'
|
||
|
class={' border-transparent pb-1 border-b-[1px] border-b-[#ddd] overflow-hidden outline-none border-[1px] w-full'}
|
||
|
/>
|
||
|
</div>
|
||
|
)
|
||
|
})
|