Vue封装的组件全局注册并引用(2)

<template> <div :style="getStyle"> {{getStyle.text}} </div> </template> <script> export default { name: 'RdappBgTitle', props: { textStyle: Object, }, computed: { getStyle() { return Object.assign({ text: '基本信息', width: '300px', height: '54px', lineHeight: '54px', textAlign: 'center', fontSize: '16px', fontColor: '#fff', }, this.textStyle); }, }, }; </script> <style scoped> .BgTitle-box{ background: url("../../static/img/PreliminaryJudge/assess.png") no-repeat center center; } </style>

好了,以上就是组件封装以及全局注册引用的方法,希望对你有帮助。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/b6ec0892687c436d98c07221c05277aa.html