10 changed files with 69 additions and 42 deletions
@ -1,16 +1,25 @@ |
|||
{ |
|||
"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" |
|||
} |
|||
} |
|||
"pages": [ |
|||
{ |
|||
"path": "pages/index/index", |
|||
"style": { |
|||
"navigationBarTitleText": "uni-app" |
|||
} |
|||
}, |
|||
{ |
|||
"path": "pages/plugin-test/plugin-test", |
|||
"style": { |
|||
"navigationBarTitleText": "iframe-测试" |
|||
} |
|||
} |
|||
], |
|||
"globalStyle": { |
|||
"navigationBarTextStyle": "black", |
|||
"navigationBarTitleText": "uni-app", |
|||
"navigationBarBackgroundColor": "#F8F8F8", |
|||
"backgroundColor": "#F8F8F8" |
|||
}, |
|||
"easycom": { |
|||
"^u-(.*)": "uview-ui/components/u-$1/u-$1.vue" |
|||
} |
|||
} |
|||
|
@ -0,0 +1,7 @@ |
|||
<template> |
|||
<view> iframe 验证 </view> |
|||
</template> |
|||
|
|||
<script> |
|||
export default {}; |
|||
</script> |
Loading…
Reference in new issue