溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何在Vue項(xiàng)目中使用render方法

發(fā)布時(shí)間:2021-03-29 17:02:16 來(lái)源:億速云 閱讀:200 作者:Leah 欄目:web開(kāi)發(fā)

本篇文章為大家展示了如何在Vue項(xiàng)目中使用render方法,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過(guò)這篇文章的詳細(xì)介紹希望你能有所收獲。

<!DOCTYPE html>
<html>
<head>
  <title>Vue的render方法說(shuō)明</title>
  <script src="vue.js"></script>
</head>
<body>
<div id="app">
  <child :level="1">
    hello world
  </child>
</div>

<script type="text/x-template" id="anchored-heading-template">
  <div>
    <h2 v-if="level === 1">
      <slot></slot>
    </h2>
    <h3 v-if="level === 2">
      <slot></slot>
    </h3>
    <h4 v-if="level === 3">
      <slot></slot>
    </h4>
    <h5 v-if="level === 4">
      <slot></slot>
    </h5>
    <h6 v-if="level === 5">
      <slot></slot>
    </h6>
    <h7 v-if="level === 6">
      <slot></slot>
    </h7>
  </div>
</script>

<script type="text/javascript">
Vue.component('child', {
  template: '#anchored-heading-template',
  props: {
    level: {
      type: Number,
      required: true
    }
  }
});
  new Vue({
    el: "#app"
  })
</script>
</body>
</html>

雖然使用template定義組件的方法非常的直觀,但是這樣會(huì)造成代碼過(guò)長(zhǎng)。可以使用render的方法

<!DOCTYPE html>
<html>
<head>
  <title>Vue的render方法說(shuō)明</title>
  <script src="vue.js"></script>
</head>
<body>
<div id="app">
  <child :level="1">
    hello world
  </child>
</div>
<script type="text/javascript">
Vue.component('child', {
  render:function (createElement) {
    var body=this.$slots.default;
    //this.$slots返回了一個(gè)組件分發(fā)下來(lái)的元素和內(nèi)容
    //this.$slots.default返回了具名的內(nèi)容
    return createElement(
      'h'+this.level,
      //this.level是利用v-bind注入到組件中的level
      body
    )
  },
  //因?yàn)関ue中組件父組件無(wú)法向子組件注入內(nèi)容。所以我們需要通過(guò)
  //v-bind定義一個(gè)key,value向子組件注入內(nèi)容。所要接收的值也需要在定義組件時(shí)的props屬性中的定義一下
  props:{
    level:{

    }
  }
});
  new Vue({
    el: "#app"
  })
</script>
</body>
</html>

下面是一個(gè)slot具名分發(fā)的demo:介紹了creatElement的用法:

<!DOCTYPE html>
<html>
<head>
  <title>Vue的render方法說(shuō)明</title>
  <script src="vue.js"></script>
</head>
<body>
<div id="app">
  <child>
    <p slot="header">this is header</p>
    <p slot="center">this is center</p>
    <p slot="footer">this is footer</p>
  </child>
</div>


<script type="text/javascript">
  Vue.component('child', {
    render: function (createElement) {
     var header=this.$slots.header;
     var center=this.$slots.center;
     var footer=this.$slots.footer;
//createElement第一個(gè)參數(shù)是標(biāo)簽名,第二個(gè)參數(shù)是值
     return createElement('div',[
       createElement('div', header),
       createElement('div', center),
       createElement('div', footer),
     ])
    }
  });
  new Vue({
    el: "#app"
  })
</script>
</body>
</html>

所創(chuàng)建的組件的demo結(jié)果如下:

如何在Vue項(xiàng)目中使用render方法

上述內(nèi)容就是如何在Vue項(xiàng)目中使用render方法,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI