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