1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <view>
- <view class="textVo">
- <view class="title">{{textVo.title}}</view>
- <view class="text">
- <view v-html="textVo.dataContent"></view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- props:[
- "textVo"
- ],
- data() {
- return {
-
- };
- }
- }
- </script>
- <style lang="scss">
- .textVo{
- .title{
- line-height: 30px;
- border-left: 4px solid #009FE8;
- border-radius: 4px;
- padding-left: 10px;
- margin-bottom: 10px;
- }
- .text{
- text-indent: 2rem;
- }
- }
- </style>
|