diff --git a/examples/wxcomponents-template/App.vue b/examples/wxcomponents-template/App.vue
new file mode 100644
index 0000000000000000000000000000000000000000..4e598e3afda9a38c176fae66aeaf9470c683dd06
--- /dev/null
+++ b/examples/wxcomponents-template/App.vue
@@ -0,0 +1,26 @@
+
+
+
diff --git a/examples/wxcomponents-template/main.js b/examples/wxcomponents-template/main.js
new file mode 100644
index 0000000000000000000000000000000000000000..0656173c0697ae240062bb8648a95ce73e63a46b
--- /dev/null
+++ b/examples/wxcomponents-template/main.js
@@ -0,0 +1,11 @@
+import Vue from 'vue'
+import App from './App'
+
+Vue.config.productionTip = false
+
+App.mpType = 'app'
+
+const app = new Vue({
+ ...App
+})
+app.$mount()
diff --git a/examples/wxcomponents-template/manifest.json b/examples/wxcomponents-template/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..f098ca4fcba18ad213fbd319c428b86f5a3fc205
--- /dev/null
+++ b/examples/wxcomponents-template/manifest.json
@@ -0,0 +1,55 @@
+{
+ "name" : "wxcomponents-template",
+ "appid" : "__UNI__773C51E",
+ "description": "",
+ "versionName": "1.0.0",
+ "versionCode": "100",
+ "transformPx":false,
+ "app-plus": { /* 5+App特有相关 */
+ "modules": { /* 模块配置 */
+
+ },
+ "distribute": { /* 应用发布信息 */
+ "android": { /* android打包配置 */
+ "permissions": ["",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ]
+ },
+ "ios": { /* ios打包配置 */
+
+ },
+ "sdkConfigs": { /* SDK配置 */
+
+ }
+ }
+ },
+ "quickapp": { /* 快应用特有相关 */
+
+ },
+ "mp-weixin": { /* 小程序特有相关 */
+ "appid": "",
+ "setting" : {
+ "urlCheck" : true
+ }
+ }
+}
diff --git a/examples/wxcomponents-template/pages.json b/examples/wxcomponents-template/pages.json
new file mode 100644
index 0000000000000000000000000000000000000000..bf32f65d10af8aa94e12fdb94145c43d20ce7feb
--- /dev/null
+++ b/examples/wxcomponents-template/pages.json
@@ -0,0 +1,16 @@
+{
+ "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
+ {
+ "path": "pages/index/index",
+ "style": {
+ "navigationBarTitleText": "uni-app"
+ }
+ }
+ ],
+ "globalStyle": {
+ "navigationBarTextStyle": "black",
+ "navigationBarTitleText": "uni-app",
+ "navigationBarBackgroundColor": "#F8F8F8",
+ "backgroundColor": "#F8F8F8"
+ }
+}
diff --git a/examples/wxcomponents-template/pages/index/index.vue b/examples/wxcomponents-template/pages/index/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..78b92e81a40c5ee5376ea6e1ff1991c3d47f20a0
--- /dev/null
+++ b/examples/wxcomponents-template/pages/index/index.vue
@@ -0,0 +1,26 @@
+
+
+ {{title}}
+
+
+
+
+
+