v-html rendering component problem

v-html rendering component problem

Since I have parsed HTML before, I want to use Vue drag and drop today to achieve automatic code generation similar to that of Kuai Station. As a result, I encountered the problem that the drag component could not be parsed in the past, because Vue's v-html can only parse HTML to prevent XSS attacks.

Ideas

First, implement a simple page divided into three parts: left, middle, and right. The left side is the component that needs to be dragged, the middle is used for component arrangement and display, and the right side is the parsed code

Component list code on the left

  <div ref="test" >
    <one-component :title="title[0]" element="<el-radio v-model='radio' label='1'>Alternative options</el-radio>"> 
      <el-radio slot="component" v-model="radio" label="1">Options</el-radio>
    </one-component>
  </div>
</template>

<script>
import OneComponent from '../components/oneComponent'
export default {
  name: '',
  data() {
    return {
        radio: '2',
        title: ['Radio single checkbox']
    }
  },
  components:{
    OneComponent
  },
 

}
</script>

<style lang="stylus" scoped>
</style>

Intermediate component display code

  <div class="all">
    <el-form label-width="80px" label-position="left" :model="ruleForm" :rules="rules">
      <el-form-item label="simulated width" prop="inputW">
        <el-input v-model="ruleForm.inputW" placeholder="Please enter width"></el-input>
      </el-form-item>
      <el-form-item label="Simulation height" prop="inputH">
        <el-input v-model="ruleForm.inputH" placeholder="Please enter height"></el-input>
      </el-form-item>
    </el-form>
    <Variablebox
      class="box"
      :width="ruleForm.inputW"
      :height="ruleForm.inputH"
    ></Variablebox>
  </div>
</template>
<script>
import Variablebox from "../components/Variablebox";
export default {
  name: "",
  data() {
    var checkSize = (rule, value, callback) => {
      console.log(value);
      if (value < 500 || value > 1000) {
        callback(new Error("A number between 500 and 1000 is recommended"));
      } else if (!Number.isInteger(Number(value))) {
        callback(new Error("Please enter a numeric value"));
      } else {
        callback();
      }
    };
    return {


      ruleForm: {
        inputW: 500,
        inputH: 500
      },

      rules:
        inputW: [{ validator: checkSize, trigger: "blur" }],
        inputH: [{ validator: checkSize, trigger: "blur" }]
      }
    };
  },
  methods: {
  },
  components:
    Variablebox
  }
};
</script>
<style lang="stylus" scoped>
.all
  padding: 0 20px
  display: flex
  flex-direction: column
</style>

Next, we implement the dragging of components using drag and drop to display the components on the Variablebox page. After using v-html failed, I searched on Baidu and found that it basically called using vue.Vue.compile( template ) and render, but there was no example.

compile compiles a template string into a render function, which means that render calls createElement in the end and converts it into HTML, but we render directly
</el-radio slot="component" v-model="radio" label="1"/>
So I personally feel that it doesn't work, and finally I can only try to create a new component and then mount it

   new Vue({
        // el: '#app'
        template: this.ele,
         data:{
           radio: '2'
        },
      }).$mount("#apps");

This will temporarily solve the problem.

Using v-html to render tags in vue

Get the background data with label content, which needs to be rendered to the page for display. The final effect is as follows: Graphics and text layout

1. First get the data and process it separately

2. Then output it in html

You may also be interested in:
  • Solution to the inability to modify the style of rich text rendered by vue through v-html instructions
  • Use v-html to solve the problem that html tags are not parsed in Vue.js rendering

<<:  How to completely uninstall iis7 web and ftp services in win7

>>:  Solution to 2059 error when connecting Navicat to MySQL

Recommend

In-depth understanding of MySQL slow query log

Table of contents What is the slow query log? How...

A detailed introduction to wget command in Linux

Table of contents First install wget View Help Ma...

How to adapt CSS to iPhone full screen

1. Media query method /*iPhone X adaptation*/ @me...

A brief discussion on mysql backup and restore for a single table

A. Installation of MySQL backup tool xtrabackup 1...

Binary installation of mysql 5.7.23 under CentOS7

The installation information on the Internet is u...

js realizes the dynamic loading of data by waterfall flow bottoming out

This article shares with you the specific code of...

Detailed explanation of CSS animation attribute keyframes

How long has it been since I updated my column? H...

Detailed explanation of the payment function code of the Vue project

1. Alipay method: Alipay method: Click Alipay to ...