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

溫馨提示×

溫馨提示×

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

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

Vue3怎么編寫氣泡對話框組件

發布時間:2022-08-30 11:07:21 來源:億速云 閱讀:321 作者:iii 欄目:開發技術

這篇文章主要介紹“Vue3怎么編寫氣泡對話框組件”,在日常操作中,相信很多人在Vue3怎么編寫氣泡對話框組件問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Vue3怎么編寫氣泡對話框組件”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

Vue3氣泡對話框組件,使用 TypeScript枚舉限定類型,樣式用到了 TailwindCSS

組件代碼

<template>
  <div class="mt-5 mb-5 p-2 bg-white border-solid border-gray-300 border-l border-t border-r border-b border-light-blue-500 rounded-md relative">
    <div :class="{
      'w-2.5 h-2.5 border-gray-300 bg-white transform absolute': true,
      'border-l border-t rotate-45 -top-1.5 left-4': placement === 'top-start',
      'border-l border-t rotate-45 -top-1.5 inset-x-2/4 -translate-x-1.5': placement === 'top',
      'border-l border-t rotate-45 -top-1.5 right-4': placement === 'top-end',
      'border-l border-t -rotate-45 top-4 -left-1.5': placement === 'left-start',
      'border-l border-t -rotate-45 inset-y-2/4 -left-1.5 -translate-y-1.5': placement === 'left',
      'border-l border-t -rotate-45 bottom-4 -left-1.5': placement === 'left-end',
      'border-r border-b rotate-45 -bottom-1.5 left-4': placement === 'bottom-start',
      'border-r border-b rotate-45 -bottom-1.5 inset-x-2/4 -translate-x-1.5': placement === 'bottom',
      'border-r border-b rotate-45 -bottom-1.5 right-4': placement === 'bottom-end',
      'border-r border-b -rotate-45 top-4 -right-1.5': placement === 'right-start',
      'border-r border-b -rotate-45 inset-y-2/4 -right-1.5 -translate-y-1.5': placement === 'right',
      'border-r border-b -rotate-45 bottom-4 -right-1.5': placement === 'right-end',
    }"></div>
    <slot></slot>
  </div>
</template>

<script lang="ts">
import {
  defineComponent,
  PropType
} from 'vue';

enum EnumPlacement {
  TopStart = "top-start",
  Top = "top",
  TopEnd = "top-end",
  LeftStart = "left-start",
  Left = "left",
  LeftEnd = "left-end",
  BottomStart = "bottom-start",
  Bottom = "bottom",
  BottomEnd = "bottom-end",
  RightStart = "right-start",
  Right = "right",
  RightEnd = "right-end"
}

export default defineComponent({
  name: 'popover-warpper',
  props: {
    placement:{
      type: String as PropType<EnumPlacement>,
      default: 'top-start'
    }
  }
});
</script>
  • 所有樣式均使用 TailwindCSS

  • 枚舉類型 EnumPlacement 定義了氣泡對話框的箭頭位置。

  • 組件接收參數 placement,并用 PropType 結合枚舉類型限制該參數的值。

  • 參數 placement 可以不傳,默認值是 top-start,即箭頭指向上方,位置在左端。

使用組件

<template>
  <PopoverWarpper>
    <div class="text-black text-lg">標題</div>
    <div class="mt-2">內容內容內容內容</div>
    <div class="mt-2">內容內容內容內容</div>
  </PopoverWarpper>
</template>
<script>
import { defineComponent } from 'vue';
import PopoverWarpper from '@/components/PopoverWarpper.vue';
export default defineComponent({
  components:{ PopoverWarpper }
})
</script>

展示效果

Vue3怎么編寫氣泡對話框組件

給組件傳參 <PopoverWarpper placement=“right-end”> 可以控制箭頭位置。

Vue3怎么編寫氣泡對話框組件

到此,關于“Vue3怎么編寫氣泡對話框組件”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

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

AI

阳原县| 新津县| 林口县| 邢台市| 龙井市| 昆山市| 曲靖市| 寿宁县| 普兰县| 青冈县| 昭觉县| SHOW| 神农架林区| 瑞安市| 志丹县| 明溪县| 雷波县| 深水埗区| 洛宁县| 青川县| 资阳市| 马边| 濮阳县| 乐安县| 永康市| 伊通| 城固县| 临湘市| 驻马店市| 郯城县| 高邮市| 喀什市| 边坝县| 浠水县| 交城县| 阿图什市| 正宁县| 公安县| 乌兰浩特市| 河间市| 于都县|