From 191d6fb9aa00e6bf5ff80081ee2fa4b7b562d660 Mon Sep 17 00:00:00 2001 From: pqsw9iynf <1052350599@qq.com> Date: Sun, 30 May 2021 22:03:57 +0800 Subject: [PATCH] SearchInput.js --- components/SearchInput | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 components/SearchInput diff --git a/components/SearchInput b/components/SearchInput new file mode 100644 index 0000000..552a8ca --- /dev/null +++ b/components/SearchInput @@ -0,0 +1,23 @@ +// components/SearchInput/SearchInput.js +Component({ + /** + * 组件的属性列表 + */ + properties: { + + }, + + /** + * 组件的初始数据 + */ + data: { + + }, + + /** + * 组件的方法列表 + */ + methods: { + + } +})