中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Vue中父子組件間傳值問題怎么解決

發布時間:2023-02-24 09:09:46 來源:億速云 閱讀:130 作者:iii 欄目:編程語言

本篇內容介紹了“Vue中父子組件間傳值問題怎么解決”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

一.父組件向子組件傳值

父組件向子組件傳值會用到:Prop,一般的我們需要在子組件中進行相關的聲明,如下所示:

子組件為HellowWorld.vue

<script>export default {
  name: 'HelloWorld',
  //接收的變量
  props: {
  //聲明相關的類型
    msg: String,
    count:Number,
    options:[]
  },
  data(){
    return{

    }
  },
  methods:{
  }}</script>

在父組件App.vue中

<template>
  <div id="app">
    <!-- msg為字符串類型,count為數字,options為數組 -->
    <HelloWorld msg="First App" :count='count' :options="options"/>
  </div></template><script>//引入組件import HelloWorld from './components/HelloWorld.vue'export default {
  name: 'App',
  components: {
    HelloWorld  },
  data(){
    return{
      count:0,
      options:[],
    }
  },
  methods:{
  }}</script>

那么在頁面上效果就是:
Vue中父子組件間傳值問題怎么解決
當然我們也可以寫一些事件來進行動態的數據交互,例如:
Vue中父子組件間傳值問題怎么解決

二.子組件向父組件傳值

在子組件傳值時會用到$emit,值得注意的是:在子組件傳值時候的方法要與父組件中監聽的方法名稱相同,也就是示例中的 listenToChild。

Helloworld.vue子組件:

<template>
  <div class="hello">
    <!-- 文字信息 -->
    <h2 >{{ msg }}</h2>
    <!-- 數字信息 -->
    <h3>{{count}}</h3>
    <!-- 渲染數組信息 -->
    <ul>
      <li v-for="(item,index) in options" :key="index">{{item}}</li>
    </ul>
    <!-- 進行傳值 -->
    <button @click="SendMsg">點擊</button>
  </div></template><script>export default {
  name: 'HelloWorld',
  props: {
    msg: String,
    count:Number,
    options:[]
  },
  data(){
    return{

    }
  },
  methods:{
    SendMsg(){
      // listenToChild  注意
      this.$emit('listenToChild',this.options)
    }
  }}</script><!-- Add "scoped" attribute to limit CSS to this component only --><style scoped>h4 {
  margin: 40px 0 0;}ul {
  list-style-type: none;
  padding: 0;}/* li {
  display: inline-block;
  margin: 0 10px;
} */a {
  color: #42b983;}</style>

App.vue父組件:

<template>
  <div id="app">
    <img alt="Vue logo" src="./assets/logo.png">
    <!-- listenToChild 為子組件傳來的方法 -->
    <HelloWorld msg="First App" :count='count' :options="options" @listenToChild="show"/>
    <button @click="Add">+</button>
    <button @click="restart">置零</button>
    <button @click="Sub">-</button>
    <ul>
      <li v-for="(item,index) in data" :key="index">{{index}},{{item}}</li>
    </ul>
  </div></template><script>import HelloWorld from './components/HelloWorld.vue'export default {
  name: 'App',
  components: {
    HelloWorld  },
  data(){
    return{
      // 要傳去子組件的參數
      count:0,
      options:[],
      // 子組件傳來的參數
      data:[]
    }
  },
  methods:{
    Add(){
      this.count=Number(this.count)+1
      this.options.push('添加一次,當前數值為:'+this.count)
    },
    Sub(){
     
      if(this.count<=0){
        this.options.push('當前數值不能變化了'+this.count)
      }else{
        this.count=Number(this.count)-1
       this.options.pop()
      }
       
    },
    show(data){
      console.log(data)
      this.data=data    },
    restart(){
      this.count=0
      this.options=[]
    }
  }}</script><style>#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;}button{
  margin: 20px;}ul {
  list-style-type: none;
  padding: 0;}</style>

效果:
Vue中父子組件間傳值問題怎么解決

“Vue中父子組件間傳值問題怎么解決”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

vue
AI

青铜峡市| 青州市| 赫章县| 黑龙江省| 武平县| 新余市| 延寿县| 任丘市| 达拉特旗| 容城县| 新源县| 古蔺县| 龙川县| 康保县| 汝城县| 于田县| 乌拉特后旗| 方城县| 陵水| 孙吴县| 马关县| 武安市| 虹口区| 萍乡市| 扬州市| 孟州市| 正安县| 黄梅县| 博兴县| 龙门县| 新密市| 阿鲁科尔沁旗| 北流市| 苍溪县| 孟津县| 绍兴市| 朝阳市| 江阴市| 丰都县| 文登市| 泾川县|