美文网首页
Vue.js:使用 uni-app 进行多端开发

Vue.js:使用 uni-app 进行多端开发

作者: yu_liu | 来源:发表于2019-03-20 19:52 被阅读0次

uni-app 是一个使用 Vue.js 开发跨平台应用的前端框架,开发者编写一套代码,可编译到iOS、Android、H5、小程序等多个平台。

项目准备

在 HBuilderX 中新建 uni-app

调整如下的目录结构

代码编写

配置 pages.json 文件

{
    "pages": [
        {
            "path": "pages/index/index",
            "style": {
                "navigationBarTitleText": "主页"
            }
        },
        {
            "path": "pages/ucenter/ucenter",
            "style": {
                "navigationBarTitleText": "我的"
            }
        },
        {
            "path": "pages/ucenter/setting",
            "style": {
                "navigationBarTitleText": "个人设置"
            }
        }
    ],
    "tabBar": {
        "color": "#000000",
        "selectedColor": "#2F85FC",
        "backgroundColor": "#FFFFFF",
        "borderStyle": "black",
        "list": [
            {
                "pagePath": "pages/index/index",
                "iconPath": "static/home.png",
                "selectedIconPath": "static/home-active.png",
                "text": "主页"
            },
            {
                "pagePath": "pages/ucenter/ucenter",
                "iconPath": "static/center.png",
                "selectedIconPath": "static/center-active.png",
                "text": "我的"
            }
        ]
    },
    "globalStyle": {
        "navigationBarTextStyle": "white",
        "navigationBarBackgroundColor": "#2F85FC",
        "backgroundColor": "#FFFFFF"
    }
}

填充 index.vue 内容

<template>
    <view class="container ">
        <text class="title">主页,{{ title }}</text>
    </view>
</template>

<script>
export default {
    data() {
        return {
            title: 'Hello'
        };
    },
    onLoad() {},
    methods: {}
};
</script>

<style>
.container {
    width: 95%;
    margin: 0 auto;
    text-align: center;
}
.title {
    font-size: 36upx;
    color: #8f8f94;
}
</style>

填充 ucenter.vue 内容

<template>
    <view class="container">
        <text>{{ name }}的个人中心</text>
        <navigator url="../ucenter/setting" hover-class="navigator-hover">
            <button type="default">设置</button>
        </navigator>
    </view>
</template>

<script>
export default {
    data() {
        return {
            name: 'yu'
        };
    },
    onLoad() {},
    methods: {}
};
</script>

<style>
.container {
    width: 95%;
    margin: 0 auto;
    text-align: center;
}
</style>

选择启动模式

可以选择模拟器,真机模拟,这里我们使用浏览器进行模拟。

image

相关文章

网友评论

      本文标题:Vue.js:使用 uni-app 进行多端开发

      本文链接:https://www.haomeiwen.com/subject/rratvqtx.html