iT邦幫忙

第 12 屆 iThome 鐵人賽

DAY 8
1
Modern Web

「VR 」前端後端交響曲 - 30天開發 Vue.js feat. Ruby on Rails即時互動網站系列 第 8

[VR 前後端交響曲Day8] 由外到內:Vue元件裡的props屬性(1)

  • 分享至 

  • xImage
  •  

昨天鐵人賽提到了component元件是個堆積木的概念,讓我們可以更容易重複使用。結尾也提到了一個問題:在Vue裡面,不同的元件們該如何傳遞資料?

在我們設置的Rails專案中,home.html.erb這個首頁的外層有一個名為Root的父元件,
內層有NewsFoot兩個子元件。

html: home.html.erb

<div id="content">
  <div class="main-title">Vue.js x Rails第12屆鐵人賽專案:{{ day }}</div>
  <div class="main-body">本日主題:{{ topic }}</div>
  <News></News>
  <Foot></Foot>
</div>

如何像下圖所示,利用props屬性,把Root元件裡的資料,向下傳給內層的News元件呢?

Step1. 在id名為content的Vue Root掛載點,使用author="Ting的方式,將字串透過author傳入NewsVue元件

html: home.html.erb

<div id="content">
  <div class="main-title">Vue.js x Rails第12屆鐵人賽專案:{{ day }}</div>
  <div class="main-body">本日主題:{{ topic }}</div>
  <News author="Ting"></News>
  <Foot></Foot>
</div>

Step2. JS抓取Vue Root掛載點的id元素,建構一個Vue instance,並註冊News的Vue元件

home.js

import TurbolinksAdapter from 'vue-turbolinks'
import Vue from 'vue/dist/vue.esm'
import News from "../components/news"
import Foot from "../components/foot"


Vue.use(TurbolinksAdapter)

document.addEventListener('turbolinks:load', () => {
  let el = document.querySelector("#content");

  if (el){
    new Vue({
      el,
      data: {
        day: "第 8 天",
        topic: "元件的溝通 - props",
      },
      components: { News, Foot }
    })    
  }
})

Step3. 設置props

我的News元件有兩個區塊,
message代表著每一天我的不同鐵人賽的文章重點:內容會以鬍子語法傳入 { { message } }
author作者這筆資料,我需要接收Vue instance傳入的資料到news這個Vue元件的props屬性。

news.vue

<template>
  <div class="news">
    <h1>本日重點:{ {  message } } </h1>
    <i>by  { { author } } </i>
  </div>
</template>

<script>
  export default { 
    props: ['author'],    
    data: function () {
      return {
        message: "由外層到內層元件的單向資料流:設定元件屬性props,可供news元件使用"
      }
    }
  }
</script>

<style scoped>
  .news{
    padding-left: 20px;
    background-color: rgb(248, 225, 194);
  }
  h1 {
    color: brown;
  }
</style>

以上,我們就可以把原本塞在Rootauthor的值傳入給下一層的News元件。
明天來介紹動態接收從Vue instance傳過去的值~


上一篇
[VR 前後端交響曲Day7] 在Rails專案內加上Vue元件
下一篇
[VR 前後端交響曲Day9] 由外到內:Vue元件裡的props屬性(2)
系列文
「VR 」前端後端交響曲 - 30天開發 Vue.js feat. Ruby on Rails即時互動網站30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言