黑卡APP测试html组件

2020-07-15 19:17:14 阅读:12 编辑
<template>
    <div style="margin-top: 100px;">
        <text>Hello</text>
        <w-html style="width:750px;height: 200px;" :html="html"></w-html>
    </div>
</template>
<style scoped>
    .text{
        font-size: 50px;
    }
</style>
<script>
    import html from "./../../../common/components/html"
    import wx from './../../../common/wx'
    import console from './../../../common/console'
    export default {
        components:{
            "w-html":html,
        },
        data:function () {
            return {
                html:'<p><img src="https://img-blog.csdnimg.cn/20190918140053667.png" alt=""></p><p><img src="https://img-blog.csdnimg.cn/20190918140053667.png" alt=""></p>'
            };
        },
        mixins: [require('./../../../common/publish').publish],
        methods:{
        },
        mounted:function () {
        },
        created:function () {
            //console.log("index created");
        }
    }
</script>