From 70cd5e57f322c75033c1faa8037ddf4a988265a2 Mon Sep 17 00:00:00 2001 From: lqq Date: Mon, 14 Oct 2019 11:11:45 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=A9=BA=E5=86=85=E5=AE=B9?= =?UTF-8?q?=E7=BB=84=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/empty/index.js | 23 +++++++++++++++++++++++ components/empty/index.json | 4 ++++ components/empty/index.wxml | 4 ++++ components/empty/index.wxss | 1 + 4 files changed, 32 insertions(+) create mode 100644 components/empty/index.js create mode 100644 components/empty/index.json create mode 100644 components/empty/index.wxml create mode 100644 components/empty/index.wxss diff --git a/components/empty/index.js b/components/empty/index.js new file mode 100644 index 0000000..64354b9 --- /dev/null +++ b/components/empty/index.js @@ -0,0 +1,23 @@ +// components/empty/index.js +Component({ + /** + * 组件的属性列表 + */ + properties: { + + }, + + /** + * 组件的初始数据 + */ + data: { + + }, + + /** + * 组件的方法列表 + */ + methods: { + + } +}) diff --git a/components/empty/index.json b/components/empty/index.json new file mode 100644 index 0000000..e8cfaaf --- /dev/null +++ b/components/empty/index.json @@ -0,0 +1,4 @@ +{ + "component": true, + "usingComponents": {} +} \ No newline at end of file diff --git a/components/empty/index.wxml b/components/empty/index.wxml new file mode 100644 index 0000000..749e0ae --- /dev/null +++ b/components/empty/index.wxml @@ -0,0 +1,4 @@ + + + + diff --git a/components/empty/index.wxss b/components/empty/index.wxss new file mode 100644 index 0000000..615e47f --- /dev/null +++ b/components/empty/index.wxss @@ -0,0 +1 @@ +/* components/empty/index.wxss */ \ No newline at end of file