1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <template>
- <div class="styleTitleBox">
- <div :class="['titleBoxStyle' + type]">{{ text }}</div>
- </div>
- </template>
- <script>
- export default {
- props: {
-
- },
- data() {
- return {
- type:1,
- text:"多图板块"
- };
- },
- methods: {
-
- },
- mounted() {
-
- },
- };
- </script>
- <style scoped lang="less">
- .styleTitleBox {
- width: 468px;
- height: 41px;
- text-align: center;
- font-size: 32px;
- font-weight: bold;
- color: #333;
- line-height: 41px;
- }
- .titleBoxStyle1{
- background: url('../../../../../assets/template/component/titleStyle1.png') no-repeat center center;
- background-size: 100% 100%;
- }
- </style>
|