uni-app中自定义页面顶部标题

一、在你需要的页面里加"navigationStyle":设置为“custom”

uni-app中自定义页面顶部标题_第1张图片

 二、

uni-app中自定义页面顶部标题_第2张图片

 三、components文件夹下新建一个组件custom-title.vue,可以设置为全局组件

在组件中写以下内容






四、main.js 里 注册再使用

import titles from '@/components/custom-title.vue'
Vue.component('titles',titles)

五、在需要的页面直接使用


你可能感兴趣的:(uniapp,html,前端)