自定义头部图标的两种方式

1.使用字体图标

"app-plus": {
					"titleNView": {
						"buttons": [{
						"width": "32px",
						"color":"#000",
						"fontSize":"23px",
						"text":"\ue6b9",
						"fontSrc":"/static/home/iconfont.ttf"
						}]
					}
				}

2.使用图片定位的方式

"app-plus": {
					"titleNView": {
						 "tags":[{
						 	"tag":"img",
						 	"src":"/static/home/share.png",
						 	"position":{
						 		"right":"10px",
						 		"top":"auto",
						 		"width":"20px",
						 		"height":"20px"
						 	}
						 }]
					}
				}

 

你可能感兴趣的:(uniApp,Vue)