123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <view class="content">
- <!-- <u-parse :content="article" @preview="preview" @navigate="navigate" ></u-parse> -->
- <parser :html="html" :img-mode="widthFix"></parser>
- </view>
- </template>
- <script>
- // import uParse from '@/components/gaoyia-parse/parse.vue'
- // import uParse from '@/components/u-parse/u-parse.vue'
- import parser from "@/components/jyf-Parser/index"
- var self;
- export default{
- components: {
- parser,
- // uPars
- },
- data() {
- return{
- serverUrl: '',
- type: '',
- html:''
- }
- },
- created(){
- self = this;
- },
- methods:{
- }
- }
- </script>
- <style lang="scss">
- page{
- background: $sub-bg-color;
- border-top: 1px solid #EBEBEB;
- }
- .content {
- padding: 40rpx 24rpx;
- }
- </style>
|