预览功能实现

需求:将后端返回来的文字或者图片和视频展示在页面上。

        
        
          

{{previewTitle}}

// 预览事件 previewButton(row){ let _this = this; let isNull = validatenull; getDetails(row.id).then((res)=>{ if(res.data.code == 0){ _this.dialogPreviewVisible = true; console.log(res.data.data,'预览'); _this.previewTitle = res.data.data.title _this.previewContent = res.data.data.content console.log(res.data.data.content,'66666'); } }) },

预览功能实现_第1张图片

你可能感兴趣的:(前端,javascript,vue.js)