最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

vue中的slot封裝組件彈窗

 更新時(shí)間:2022年05月27日 16:49:04   作者:景塵  
這篇文章主要介紹了vue中的slot封裝組件彈窗,具有很好的參考價(jià)值,希望對大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教

slot封裝組件彈窗

<template>
? <el-dialog :title="title" :visible.sync="dialogVisible" :width="width" center>
? ? <slot name="content"></slot>
? </el-dialog>
</template>
<script>
export default {
? props: ["title", "width", "dialogVisible"],
? data() {
? ? return {};
? }
};
</script>
<style lang="less">
.el-dialog__header {
? padding: 20px 20px 10px;
? display: none;
}
.el-dialog__body {
? padding: 0px !important;
}
</style>
 <!-- 彈窗 -->
        <DialogModal :width="'552px'" :title="'加入黑名單'" :dialogVisible="centerDialogVisible">
          <div slot="content" class="popup">
            <div class="head">
              加入黑名單
              <i class="el-icon-close" @click="handelCloseModal()"></i>
            </div>
            <p class="isAdd">確定要講客戶王佳琛加入甄別黑名單?</p>
            <div class="confirm">
              <el-button type="primary">確定</el-button>
              <el-button plain>取消</el-button>
            </div>
          </div>
        </DialogModal>
 
        <!-- 彈窗 -->

vue組件slot入門---彈窗組件

slot 即插槽,相當(dāng)于在子組件的 DOM 中留一個(gè)位置,父組件如果有需要,就可以在插槽里添加內(nèi)容。

插槽的基礎(chǔ)使用

這里是一個(gè)插槽的簡單用法。

1.在子組件 Modal.vue 中用 slot 標(biāo)簽預(yù)留一個(gè)位置,slot 標(biāo)簽中的內(nèi)容是后備內(nèi)容,也可以為空:

<div class="modal-content">
  <slot>這是個(gè)彈框</slot>
  <div class="footer">
    <button @click="close">close</button>
    <button @click="confirm">confirm</button>
  </div>
</div>

后備內(nèi)容:當(dāng)父組件不在插槽里添加內(nèi)容時(shí),插槽顯示的內(nèi)容。

2.在父組件中使用子組件

在父組件中使用子組件,但不向自定義組件的插槽 slot 中添加內(nèi)容:

<Modal :visible.sync="visible"></Modal>

此時(shí)如果打開彈框,彈框中顯示的是后備內(nèi)容“這是個(gè)彈框”:

在這里插入圖片描述

在父組件中使用子組件,并給插槽加入個(gè)性化內(nèi)容:

<Modal :visible.sync="visible">個(gè)性化內(nèi)容</Modal>

此時(shí)如果打開彈框,彈框中顯示的是“個(gè)性化內(nèi)容”:

在這里插入圖片描述

彈窗組件

父App.vue

<template>
  <div id="app">
    <button @click="visible = true" class="btn">打開“留言”彈框</button>
    <button @click="visibleApply = true" class="btn">打開“成為大?!睆椏?lt;/button>
    <!-- “留言”彈框 -->
    <Modal
      customClassName="textarea-modal"
      title="留言"
      :visible.sync="visible"
      @confirm="confirm"
    >
      <template>
        <div class="txt">留下你想告訴我們的話...</div>
        <textarea
          name=""
          id=""
          cols="30"
          rows="10"
          placeholder="請寫下您的寶貴意見"
        ></textarea>
      </template>
    </Modal>
    <!-- “成為大?!睆椏?-->
    <Modal
      customClassName="apply-modal"
      title="成為大牛"
      :visible.sync="visibleApply"
      @confirm="confirm"
    >
      <template>
        <div class="txt">留下聯(lián)系方式,立即成為大牛</div>
        <div class="mobile">
          <input type="text" placeholder="請輸入您的手機(jī)號碼" />
        </div>
        <div class="code">
          <input type="text" placeholder="請輸入驗(yàn)證碼" />
          <button class="btn-code">獲取驗(yàn)證碼</button>
        </div>
      </template>
    </Modal>
  </div>
</template>
<script>
// 引入組件
import Modal from './components/Modal.vue';
export default {
  name: 'app',
  // 注冊組件
  components: {
    Modal
  },
  data: function() {
    return {
      // 控制“留言”彈框
      visible: false,
      // 控制“成為大牛”彈框
      visibleApply: false
    };
  },
  methods: {
    // 自定義函數(shù) confirm
    confirm() {
      // todo
    }
  }
};
</script>
<style lang="scss">
#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;
}
.btn {
  width: fit-content;
  height: 40px;
  font-size: 15px;
  line-height: 40px;
  box-sizing: border-box;
  cursor: pointer;
  border: none;
  background: #ffffff;
  border: 1px solid #ebebeb;
  color: #1b1b1b;
  padding: 0 20px;
  margin-right: 20px;
  &:focus {
    outline: none;
  }
}
.textarea-modal {
  .txt {
    text-align: left;
    padding-top: 20px;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
  }
  textarea {
    width: 355px;
    height: 110px;
    border: 1px solid #e6e6e6;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    padding: 14px 20px;
    box-sizing: border-box;
    margin-top: 18px;
    &::placeholder {
      color: rgba(0, 0, 0, 0.2);
    }
    &:focus {
      outline: none;
    }
  }
}
.apply-modal {
  .txt {
    text-align: left;
    padding-top: 20px;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    margin-bottom: 18px;
  }
  .mobile input,
  .code input {
    width: 355px;
    height: 50px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    font-size: 16px;
    color: #000000;
    padding: 14px 20px;
    box-sizing: border-box;
    &::placeholder {
      color: rgba(0, 0, 0, 0.2);
    }
    &:focus {
      outline: none;
    }
  }
  .code {
    margin-top: 20px;
    position: relative;
    input {
      padding-right: 120px;
    }
    .btn-code {
      height: 50px;
      padding: 0 20px;
      font-size: 14px;
      line-height: 50px;
      color: #2c3744;
      background: none;
      border: none;
      position: absolute;
      top: 0;
      right: 0;
      &:focus {
        outline: none;
      }
      &::before {
        content: '';
        display: block;
        width: 1px;
        height: 20px;
        background: #e5e5e5;
        position: absolute;
        left: 0;
        top: 15px;
      }
    }
  }
}
</style>

子Modal.vue

<template>
? <div :class="['modal', customClassName]" v-if="visible">
? ? <div class="modal-content">
? ? ? <div class="modal-header">
? ? ? ? <div class="title">{{title}}</div>
? ? ? ? <button class="btn-close" @click="close"></button>
? ? ? </div>
? ? ? <div class="modal-body">
? ? ? ? <slot></slot>
? ? ? </div>
? ? ? <div class="modal-footer">
? ? ? ? <button class="btn-close" @click="close">取消</button>
? ? ? ? <button class="btn-confirm" @click="confirm">提交</button>
? ? ? </div>
? ? </div>
? </div>
</template>
<script>
export default {
? name: 'Modal',
? // customClassName 為自定義類名
? // title 為彈框標(biāo)題
? props: ['visible', 'title', 'customClassName'],
? methods: {
? ? close() {
? ? ? this.$emit('update:visible', false);
? ? },
? ? confirm() {
? ? ? console.log('confirm');
? ? ? this.close();
? ? }
? }
};
</script>
<style lang="scss" scoped>
.modal {
? position: fixed;
? top: 0;
? bottom: 0;
? left: 0;
? right: 0;
? background: rgba(#000, 0.5);
? display: flex;
? align-items: center;
? justify-content: center;
? .modal-content {
? ? width: 415px;
? ? background: #fff;
? ? border-radius: 12px;
? ? text-align: center;
? ? .modal-header {
? ? ? height: 65px;
? ? ? position: relative;
? ? ? font-weight: 500;
? ? ? font-size: 18px;
? ? ? line-height: 65px;
? ? ? color: #000000;
? ? ? border-bottom: 1px solid #f2f2f2;
? ? ? .btn-close {
? ? ? ? width: 16px;
? ? ? ? height: 16px;
? ? ? ? background: url(https://qgt-document.oss-cn-beijing.aliyuncs.com/P3-5-Vue/5/5-1-1.png)
? ? ? ? ? no-repeat center / contain;
? ? ? ? position: absolute;
? ? ? ? top: 23px;
? ? ? ? right: 30px;
? ? ? ? border: none;
? ? ? ? cursor: pointer;
? ? ? ? &:focus {
? ? ? ? ? outline: none;
? ? ? ? }
? ? ? }
? ? }
? ? .modal-body {
? ? ? padding: 0 30px;
? ? ? font-size: 0;
? ? }
? ? .modal-footer {
? ? ? padding: 30px;
? ? ? display: flex;
? ? ? justify-content: space-between;
? ? ? .btn-close,
? ? ? .btn-confirm {
? ? ? ? width: 125px;
? ? ? ? height: 40px;
? ? ? ? font-size: 15px;
? ? ? ? line-height: 40px;
? ? ? ? box-sizing: border-box;
? ? ? ? cursor: pointer;
? ? ? ? border: none;
? ? ? ? &:focus {
? ? ? ? ? outline: none;
? ? ? ? }
? ? ? }
? ? ? .btn-close {
? ? ? ? background: #ffffff;
? ? ? ? border: 1px solid #ebebeb;
? ? ? ? color: #1b1b1b;
? ? ? }
? ? ? .btn-confirm {
? ? ? ? background: #3ab599;
? ? ? ? color: #fff;
? ? ? }
? ? }
? }
}
</style>

以上為個(gè)人經(jīng)驗(yàn),希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。

相關(guān)文章

  • 利用nginx部署vue項(xiàng)目的全過程

    利用nginx部署vue項(xiàng)目的全過程

    今天要用到服務(wù)器nginx,還需要把自己的vue的項(xiàng)目部署到服務(wù)器上去所以就寫一下記錄下來,下面這篇文章主要給大家介紹了關(guān)于利用nginx部署vue項(xiàng)目的相關(guān)資料,需要的朋友可以參考下
    2022-03-03
  • vue3中setup語法糖下通用的分頁插件實(shí)例詳解

    vue3中setup語法糖下通用的分頁插件實(shí)例詳解

    這篇文章主要介紹了vue3中setup語法糖下通用的分頁插件,實(shí)例代碼介紹了自定義分頁插件:PagePlugin.vue,文中提到了vue3中setup語法糖下父子組件之間的通信,需要的朋友可以參考下
    2022-10-10
  • 使用vue init webpack項(xiàng)目名創(chuàng)建項(xiàng)目方式

    使用vue init webpack項(xiàng)目名創(chuàng)建項(xiàng)目方式

    這篇文章主要介紹了使用vue init webpack項(xiàng)目名創(chuàng)建項(xiàng)目方式,具有很好的參考價(jià)值,希望對大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2023-11-11
  • 使用element-ui +Vue 解決 table 里包含表單驗(yàn)證的問題

    使用element-ui +Vue 解決 table 里包含表單驗(yàn)證的問題

    這篇文章主要介紹了使用element-ui +Vue 解決 table 里包含表單驗(yàn)證的問題,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2020-07-07
  • 解決vue項(xiàng)目F5刷新mounted里的函數(shù)不執(zhí)行問題

    解決vue項(xiàng)目F5刷新mounted里的函數(shù)不執(zhí)行問題

    今天小編就為大家分享一篇解決vue項(xiàng)目F5刷新mounted里的函數(shù)不執(zhí)行問題,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2019-11-11
  • vue3+TS 實(shí)現(xiàn)自定義指令長按觸發(fā)綁定的函數(shù)

    vue3+TS 實(shí)現(xiàn)自定義指令長按觸發(fā)綁定的函數(shù)

    這篇文章主要介紹了vue3+TS實(shí)現(xiàn)自定義指令長按觸發(fā)綁定的函數(shù),文中給大家分享了編寫自定義指令時(shí)遇到的幾個(gè)難點(diǎn),本文結(jié)合實(shí)例代碼給大家介紹的非常詳細(xì),需要的朋友可以參考下
    2022-12-12
  • Vue 實(shí)現(xiàn)列表動(dòng)態(tài)添加和刪除的兩種方法小結(jié)

    Vue 實(shí)現(xiàn)列表動(dòng)態(tài)添加和刪除的兩種方法小結(jié)

    今天小編就為大家分享一篇Vue 實(shí)現(xiàn)列表動(dòng)態(tài)添加和刪除的兩種方法小結(jié),具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2018-09-09
  • vue組件的路由高亮問題解決方法

    vue組件的路由高亮問題解決方法

    這篇文章主要給大家介紹了關(guān)于vue組件的路由高亮問題的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2021-05-05
  • Vue中@change、@input和@blur的區(qū)別及@keyup介紹

    Vue中@change、@input和@blur的區(qū)別及@keyup介紹

    這篇文章主要給大家介紹了關(guān)于Vue中@change、@input和@blur的區(qū)別及@keyup介紹的相關(guān)資料,文中通過實(shí)例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
    2023-02-02
  • Vue實(shí)現(xiàn)簡易購物車頁面

    Vue實(shí)現(xiàn)簡易購物車頁面

    這篇文章主要為大家詳細(xì)介紹了Vue實(shí)現(xiàn)簡易購物車頁面,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2020-12-12

最新評論

广水市| 会宁县| 石台县| 德钦县| 凭祥市| 会东县| 沽源县| 广饶县| 常熟市| 老河口市| 南宁市| 乐东| 姚安县| 仙游县| 略阳县| 海宁市| 南昌市| 枣阳市| 华容县| 石嘴山市| 从化市| 北海市| 宝坻区| 大宁县| 璧山县| 绥德县| 翼城县| 临清市| 平江县| 宣威市| 克拉玛依市| 蓬莱市| 青神县| 沛县| 呼和浩特市| 湘阴县| 石首市| 寿宁县| 虞城县| 灌南县| 吕梁市|