91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Vue中如何實現全局變量和局部變量

發布時間:2022-05-05 17:57:57 來源:億速云 閱讀:483 作者:iii 欄目:大數據

本篇內容主要講解“Vue中如何實現全局變量和局部變量”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Vue中如何實現全局變量和局部變量”吧!

局組件和局部組件

1.先定義組件   Vue.component('組件名', { 組件模板對象 })

注意: 組件名不要使用原生的標簽名, 若組件名定義時用的是駝峰命名法, 則調用時用中劃線分割后小寫
例如: 組件-->mtText   使用時-->   <my-text></my-text>

2.配置組件的模板  注意: 組件的模板內容有且只有一個根元素

3.在視圖層里調用 ,用雙標簽

4.組件是一個獨立的作用域, 也可以看成一個特殊的vue實例, 可以有data, methods,computed等等

注意: 組件的data是函數, 函數中需要返回一個對象作為組件的data

全局組件案例

<body>
<div id="app">
  <my-component></my-component>
</div>
<script src="lib/vue-2.4.0.js"></script>
<script>
//全局組件
  Vue.component('myComponent',{
    //1.組件的內容/模板
    template: '<div><div>頭部組件</div><h2 @click="fn">呵呵{{msg}}</h2></div>',
    data(){
      return {
        msg:'hello,組件'
      }
    },
    methods:{
      fn(){
        console.log(this.msg);
      }
    }
  })
  let vm = new Vue({
    el:"#app",
    data:{
    },
    methods:{

    },

  })
</script>
</body>

局部組件案例

<body>
<div id="app">
  <my-component></my-component>
  <my-test></my-test>
</div>
<template id="box1">
  <h2>haha</h2>
</template>
<template id="box2">
  <div>
    <ul>
      <li v-for="item in arr">
        {{ item }}
      </li>
    </ul>
  </div>
</template>
<script src="lib/vue-2.4.0.js"></script>
<script>
let vm = new Vue({
    el:"#app",
    data:{
    },
    methods:{

    },
    //局部子組件
    components:{
      // 組件名: {配置項}
      "myComponent":{
        template:'#box1',
        data(){
          return {
            msg:"哈哈"
          }
        }
      },
      "myTest":{
        template:"#box2",
        data(){
          return {
            arr:[1,2,3,4]
          }
        }
      }
    }
  })
</script>
</body>

組件切換:法一

<body>
<div id="app">
  <a href="" @click.prevent=" rel="external nofollow" rel="external nofollow" flag=true">登錄</a>
  <a href="" @click.prevent=" rel="external nofollow" rel="external nofollow" flag=false">注冊</a>
  <login v-if="flag"></login>
  <register v-else="flag"></register>
</div>
<script src="lib/vue-2.4.0.js"></script>
<script>
  Vue.component("login",{
    template:"<h2>登錄組件</h2>"
  })
  Vue.component("register",{
    template:"<h2>注冊組件</h2>"
  })
  let vm = new Vue({
    el:"#app",
    data:{
      flag: false
    },
    methods:{
    },
  })
</script>
</body>

組件切換:法二

<style>
    .red{
      color:red;
    }
    .v-enter{
      opacity:0;
      transform: translateX(150px);
    }
    .v-leave-to{
      opacity:0;
      transform: translateX(-150px);
    }
    .v-enter-active,
    .v-leave-active{
      transition: all 0.5s;
      position: absolute;
    }
  </style>
<body>
<div id="app">
  <a href="" :class=" rel="external nofollow" rel="external nofollow" {red: flag=='login'}" @click.prevent="flag='login'">登錄</a>
  <a href="" :class=" rel="external nofollow" rel="external nofollow" {red: flag=='register'}" @click.prevent="flag='register'">注冊</a>
  <!-- vue提供了一個標簽 component標簽(理解為一個占位符), 用來展示對應名稱的組件 :is屬性設置指定的組件名 -->
  <transition>
    <component :is="flag"></component>
  </transition>
</div>
<script src="lib/vue-2.4.0.js"></script>
<script>
  Vue.component("login",{
    template:"<h2>登錄組件</h2>"
  })
  Vue.component("register",{
    template:"<h2>注冊組件</h2>"
  })
  let vm = new Vue({
    el:"#app",
    data:{
      flag: "login"
    },
    methods:{

    },
  })
</script>
</body>

父組件向子組件傳值

<body>
<div id="app">
  <my-component :fromfather="father"></my-component>
</div>
<template id="box1">
  <h2 @click="change">
    {{ fromfather }}
    子組件的數據
  </h2>
</template>
<template id="grandSon">
  <h2>孫子組件的數據</h2>
</template>
<!--1.子組件不能訪問父組件的數據
2. 解決辦法: ①在引用子組件時, 通過屬性綁定 v-bind方法, 把需要傳遞給子組件的數據以綁定的形式傳過來
       ② 在子組件配置項里添加 props: ['傳遞過來的數據']-->
<script src="lib/vue-2.4.0.js"></script>
<script>
  let vm = new Vue({
    el:"#app",
    data:{
      father:'啊~~這是父組件的數據'
    },
    methods:{
    },
    //局部子組件
    components:{
      // 組件名: {配置項}
      "myComponent":{
        template:'#box1',
        data(){
          return {
            msg:"哈哈"
          }
        },
        //在子組件配置項里添加 props: ['傳遞過來的數據']
        //注意: 組件中所有的props中的數據, 都是通過父組件傳遞給子組件的, props中的數據是只讀, 無法修改
        props:['fromfather'],
        methods:{
          change(){
            // this.fromfather = "被修改了"
          }
        },
        //局部子子組件
        components:{
          'grandSon':{
            template:'#grandSon'
          }
        }
      }
    }
  })
</script>
</body>

到此,相信大家對“Vue中如何實現全局變量和局部變量”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

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

vue
AI

蚌埠市| 宝坻区| 湄潭县| 绥江县| 永德县| 广德县| 彰化县| 政和县| 饶平县| 泸水县| 中西区| 嘉义县| 绥德县| 个旧市| 永善县| 五华县| 长兴县| 偏关县| 武清区| 渝北区| 涟源市| 松江区| 江安县| 郯城县| 元氏县| 渝北区| 兴化市| 陕西省| 明溪县| 庆城县| 连云港市| 册亨县| 珠海市| 东乡族自治县| 宁河县| 台安县| 东明县| 齐河县| 于田县| 保德县| 平果县|