我的第一个微信小程序

框架:

我的第一个微信小程序

代码:

app.json:

{

"pages": [

"pages/home/home"

],

"window": {

"navigationBarBackgroundColor": "#ffffff",

"navigationBarTextStyle": "black",

"navigationBarTitleText": "小程序",

"backgroundColor": "#eeeeee",

"backgroundTextStyle": "light",

"enablePullDownRefresh": false

}

}

home.js:

Page({});

home.wxml:

<text class="title">我是首页</text>

home.wxss

.title{

font-size: 30px;

color: red;

}

效果:

我的第一个微信小程序