【发布时间】:2020-08-20 12:50:26
【问题描述】:
我想在 VueJS 中插入一个包含变量和 html 的字符串。 Vue有选项吗?
组件.vue
<template>
<div v-html="test1"></div>
</template>
<script>
export default {
name: 'component',
data() {
return {
test: "test interpolation",
test1: " <p> some text {{ test }} </p>",
};
},
}
</script>
test1 变量中的字符串是在 Http 请求后从 Json 文件中加载的
【问题讨论】:
标签: json vue.js httprequest string-interpolation