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: { + + } +})