vue2.0 之文本渲染-v-html、v-text
2021-07-14 17:07
阅读:599
YPE html>
标签:bsp script product render com meta type int lin
vue2.0 之文本渲染-v-html、v-text
1、index.html代码
vuedemo
2、main.js代码
import Vue from ‘vue‘ import App from ‘./App‘ Vue.config.productionTip = false /* eslint-disable no-new */ new Vue({ el: ‘#app‘, render: h => h(App) })
render: h => h(App)是ES6的语法,实际上它等同于
render: function(h) {
return h(App)
}
3、App.vue代码
{{ num }}
{{ status ? ‘success‘ : ‘fail‘ }}
页面展示
vue2.0 之文本渲染-v-html、v-text
标签:bsp script product render com meta type int lin
原文地址:http://www.cnblogs.com/shhnwangjian/p/7074611.html
评论
亲,登录后才可以留言!