vue v-text,v-html,v-once,v-pre,v-cloak的使用
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>模板</title>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script>
window.onload = function () {
let vm = new Vue({
el: '#app',
data: {
msg: '文字',
msg2: '文字<b>html</b>',
},
created: function () {},
methods: {
},
mounted() {
this.msg = '測試'
}
});
}
</script>
<style>
/* 必須配置css樣式,否則不生效 */
[v-cloak] {
display: none;
}
</style>
</head>
<body>
<div id="app">
<input type="text" v-model="msg">
<!-- 用來解決可能會出現閃爍的問題 -->
<h3>標題:<span v-cloak>{{msg}}</span></h3>
<!-- v-text和v-html -->
<h3 v-text='msg'></h3>
{{msg}}
<p v-html="msg2"></p>
<!-- 只繫結一次 -->
<p v-once>{{msg}}</p>
<!-- 不編譯,原樣顯示 -->
<p v-pre>{{msg}}</p>
</div>
</body>
</html>
相關文章
- vue_o6_v-once、v-html、v-text、v-pre、v-cloak指令的使用VueHTML
- (精華2020年5月4日更新) vue教程篇 v-text,v-html,v-once,v-pre,v-cloak的使用VueHTML
- vue.js輸出HTML(v-pre | v-html)Vue.jsHTML
- vue中的v-html,v-text,{{}}三種渲染模板VueHTML
- [vue] 常見用法之 v-html、v-text、v-model區別VueHTML
- v-html 、v-text({{}}) 、v-model的區別HTML
- 【vue】v-htmlVueHTML
- Vue指令——v-htmlVueHTML
- vue基礎——指令閃動v-cloakVue
- v-html 及vue-append外掛HTMLVueAPP
- VUE 之 v-html 後樣式不生效的問題VueHTML
- [Vue] v-once、v-memo 和 key 最佳化元件效能Vue元件
- Vue學習04-----v-bloak和v-htmlVueHTML
- vue -- v-cloak解決重新整理或者載入出現閃爍(顯示變數)Vue變數
- vue v-html動態新增 html 內容渲染,事件失效(無法從新渲染)VueHTML事件
- 【避坑指“難”】返回一大串html,Vue通過v-html解析展示成功HTMLVue
- 前端【VUE】02-vue指令【v-html 、v-show、 v-if 、v-else、v-on、v-bind、v-for、v-model】前端VueHTML
- 使用DOMParser或仿寫v-html自定義指令實現html標籤字串的解析渲染HTML字串
- Vue.set與vue.$set的使用Vue
- vue-router的使用Vue
- Vue簡單的使用Vue
- Vue中的$set的使用Vue
- vue vue router 基本使用Vue
- vue升級之路(三)-- vue-router的使用Vue
- vue-router 在模組化 vue中的使用Vue
- 理解vue中的scope的使用Vue
- Vue 使用中的小技巧Vue
- vue 使用jsx的配置VueJS
- Vue 元件的使用語法Vue元件
- vue 的 class 與 style 使用Vue
- Vue(14)slot插槽的使用Vue
- vue框架的簡單使用Vue框架
- Vue-Socket.io的使用Vue
- vue中使用echart的mapVue
- 07-vue-router的使用Vue
- websocket使用(vue)WebVue
- Vue快速使用Vue
- Cordova使用(vue)Vue