码迷,mamicode.com
首页 > Web开发 > 详细

vue2.0 之文本渲染-v-html、v-text

时间:2017-06-24 22:53:55      阅读:613      评论:0      收藏:0      [点我收藏+]

标签:bsp   script   product   render   com   meta   type   int   lin   

vue2.0 之文本渲染-v-html、v-text

1、index.html代码

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>vuedemo</title>
  </head>
  <body>
    <div id="app"></div>
    <!-- built files will be auto injected -->
  </body>
</html>

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代码

<template>
  <div>
    <p v-text="hello"></p>
    <p v-html="hello"></p>
    {{ num }}<br>
    {{ status ? ‘success‘ : ‘fail‘ }}
  </div>
</template>

<script>
  export default {
    data () {
      return {
        hello: ‘<span>Hello World</span>‘,
        num: 1,
        status: true
      }
    }
  }
</script>

<style>
  html {
    height: 100%;
  }
</style>

页面展示

技术分享

 

vue2.0 之文本渲染-v-html、v-text

标签:bsp   script   product   render   com   meta   type   int   lin   

原文地址:http://www.cnblogs.com/shhnwangjian/p/7074611.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!