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

溫馨提示×

溫馨提示×

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

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

vue中elementUI里的插件怎么使用

發布時間:2022-06-15 11:55:50 來源:億速云 閱讀:309 作者:iii 欄目:開發技術

這篇文章主要講解了“vue中elementUI里的插件怎么使用”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“vue中elementUI里的插件怎么使用”吧!

全屏插件的引用

全屏功能可以使用插件來實現

第一步,安裝全局插件screenfull

 npm i screenfull@5.1.0

第二步,封裝全屏顯示的插件 ScreenFull/index.vue

<template>
  <div>
    <!-- 放置一個按鈕 -->
    <el-button class="icon" @click="changeScreen">全屏</el-button>
  </div>
</template>

<script>
import ScreenFull from 'screenfull'
export default {
  methods: {
    //   改變全屏
    changeScreen() {
      if (!ScreenFull.isEnabled) {
        // 此時全屏不可用
        this.$message.warning('此時全屏組件不可用')
        return
      }
      // document.documentElement.requestFullscreen()  原生js調用
      //   如果可用 就可以全屏
      ScreenFull.toggle()
    }
  }
}
</script>

<style scoped>
.icon{
width: 40px;
height: 40px;
background-color: #ff0;
}
</style>

第三步,全局注冊該組件 main.js

import ScreenFull from './ScreenFull'
Vue.component('ScreenFull', ScreenFull) // 注冊全屏組件

第四步,放置于 App.vue

<template>
  <div id="app">
    //全屏按鈕
    <screen-full />
  </div>
</template>

<script>
export default {
  name: 'App'
}
</script>

動態主題的設置

我們想要實現在頁面中實時的切換顏色,此時頁面的主題可以跟著設置的顏色進行變化

簡單說明一下它的原理: element-ui 2.0 版本之后所有的樣式都是基于 SCSS 編寫的,所有的顏色都是基于幾個基礎顏色變量來設置的,所以就不難實現動態換膚了,只要找到那幾個顏色變量修改它就可以了。 首先我們需要拿到通過 package.json 拿到 element-ui 的版本號,根據該版本號去請求相應的樣式。拿到樣式之后將樣色,通過正則匹配和替換,將顏色變量替換成你需要的,之后動態添加 style 標簽來覆蓋原有的 css 樣式。

第一步, 封裝顏色選擇組件 ThemePicker 

實現代碼

<template>
  <el-color-picker
    v-model="theme"
    :predefine="['#409EFF', '#1890ff', '#304156','#212121','#11a983', '#13c2c2', '#6959CD', '#f5222d', ]"
    class="theme-picker"
    popper-class="theme-picker-dropdown"
  />

</template>

<script>
const version = require('element-ui/package.json').version // element-ui version from node_modules
const ORIGINAL_THEME = '#409EFF' // default color
export default {
  data() {
    return {
      chalk: '', // content of theme-chalk css
      theme: ''
    }
  },
  computed: {
    defaultTheme() {
      return this.$store.state.settings.theme
    }
  },
  watch: {
    defaultTheme: {
      handler: function(val, oldVal) {
        this.theme = val
      },
      immediate: true
    },
    async theme(val) {
      const oldVal = this.chalk ? this.theme : ORIGINAL_THEME
      if (typeof val !== 'string') return
      const themeCluster = this.getThemeCluster(val.replace('#', ''))
      const originalCluster = this.getThemeCluster(oldVal.replace('#', ''))
      console.log(themeCluster, originalCluster)
      const $message = this.$message({
        message: '  Compiling the theme',
        customClass: 'theme-message',
        type: 'success',
        duration: 0,
        iconClass: 'el-icon-loading'
      })
      const getHandler = (variable, id) => {
        return () => {
          const originalCluster = this.getThemeCluster(ORIGINAL_THEME.replace('#', ''))
          const newStyle = this.updateStyle(this[variable], originalCluster, themeCluster)
          let styleTag = document.getElementById(id)
          if (!styleTag) {
            styleTag = document.createElement('style')
            styleTag.setAttribute('id', id)
            document.head.appendChild(styleTag)
          }
          styleTag.innerText = newStyle
        }
      }
      if (!this.chalk) {
        const url = `https://unpkg.com/element-ui@${version}/lib/theme-chalk/index.css`
        await this.getCSSString(url, 'chalk')
      }
      const chalkHandler = getHandler('chalk', 'chalk-style')
      chalkHandler()
      const styles = [].slice.call(document.querySelectorAll('style'))
        .filter(style => {
          const text = style.innerText
          return new RegExp(oldVal, 'i').test(text) && !/Chalk Variables/.test(text)
        })
      styles.forEach(style => {
        const { innerText } = style
        if (typeof innerText !== 'string') return
        style.innerText = this.updateStyle(innerText, originalCluster, themeCluster)
      })
      this.$emit('change', val)
      $message.close()
    }
  },
  methods: {
    updateStyle(style, oldCluster, newCluster) {
      let newStyle = style
      oldCluster.forEach((color, index) => {
        newStyle = newStyle.replace(new RegExp(color, 'ig'), newCluster[index])
      })
      return newStyle
    },
    getCSSString(url, variable) {
      return new Promise(resolve => {
        const xhr = new XMLHttpRequest()
        xhr.onreadystatechange = () => {
          if (xhr.readyState === 4 && xhr.status === 200) {
            this[variable] = xhr.responseText.replace(/@font-face{[^}]+}/, '')
            resolve()
          }
        }
        xhr.open('GET', url)
        xhr.send()
      })
    },
    getThemeCluster(theme) {
      const tintColor = (color, tint) => {
        let red = parseInt(color.slice(0, 2), 16)
        let green = parseInt(color.slice(2, 4), 16)
        let blue = parseInt(color.slice(4, 6), 16)
        if (tint === 0) { // when primary color is in its rgb space
          return [red, green, blue].join(',')
        } else {
          red += Math.round(tint * (255 - red))
          green += Math.round(tint * (255 - green))
          blue += Math.round(tint * (255 - blue))
          red = red.toString(16)
          green = green.toString(16)
          blue = blue.toString(16)
          return `#${red}${green}${blue}`
        }
      }
      const shadeColor = (color, shade) => {
        let red = parseInt(color.slice(0, 2), 16)
        let green = parseInt(color.slice(2, 4), 16)
        let blue = parseInt(color.slice(4, 6), 16)
        red = Math.round((1 - shade) * red)
        green = Math.round((1 - shade) * green)
        blue = Math.round((1 - shade) * blue)
        red = red.toString(16)
        green = green.toString(16)
        blue = blue.toString(16)
        return `#${red}${green}${blue}`
      }
      const clusters = [theme]
      for (let i = 0; i <= 9; i++) {
        clusters.push(tintColor(theme, Number((i / 10).toFixed(2))))
      }
      clusters.push(shadeColor(theme, 0.1))
      return clusters
    }
  }
}
</script>

<style>
.theme-message,
.theme-picker-dropdown {
  z-index: 99999 !important;
}
.theme-picker .el-color-picker__trigger {
  height: 26px !important;
  width: 26px !important;
  padding: 2px;
}
.theme-picker-dropdown .el-color-dropdown__link-btn {
  display: none;
}
.el-color-picker {
  height: auto !important;
}
</style>

注冊代碼

import ThemePicker from './ThemePicker'
Vue.component('ThemePicker', ThemePicker)

第二步, 放置于 App.vue

   <template>
  <div id="app">
    <el-button type="primary">按鈕</el-button>
    <el-divider/>
    //放置動態主題按鈕
    <ThemePicker></ThemePicker>
  </div>
</template>
<script>

export default {
}
</script>

<style>
</style>

vue中elementUI里的插件怎么使用

vue中elementUI里的插件怎么使用

使用vue-element-admin模板二次開發的都可以使用

多語言實現

初始化多語言包

使用國際化 i18n 方案。通過 vue-i18n而實現。

第一步,我們需要首先國際化的包

  npm i vue-i18n@8

第二步,需要單獨一個多語言的實例化文件 src/lang/index.js

import Vue from 'vue' // 引入Vue
import VueI18n from 'vue-i18n' // 引入國際化的包
import elementEN from 'element-ui/lib/locale/lang/en' // 引入餓了么的英文包
import elementZH from 'element-ui/lib/locale/lang/zh-CN' // 引入餓了么的中文包
Vue.use(VueI18n) // 全局注冊國際化包
export default new VueI18n({
  locale: 'zh', // 從cookie中獲取語言類型 獲取不到就是中文
  messages: {
    en: {
      ...elementEN // 將餓了么的英文語言包引入
    },
    zh: {
      ...elementZH // 將餓了么的中文語言包引入
    }
  }
})

上面的代碼的作用是將Element的兩種語言導入了

第三步,在main.js中對掛載 i18n的插件,并設置element為當前的語言

import Vue from 'vue'
import ElementUI from 'element-ui'
import locale from 'element-ui/lib/locale/lang/en'
// 設置element為當前的語言
import i18n from '@/lang/index'

Vue.use(ElementUI, { locale })

new Vue({
  el: '#app',
  i18n,
  render: h => h(App)
})

引入自定義語言包

此時,element已經變成了zh,也就是中文,但是我們常規的內容怎么根據當前語言類型顯示?

這里,針對英文和中文,我們可以自己封裝不同的語言包 src/lang/zh.js , src/lang/en.js src/lang/zh.js

export default {
  lang: {
    dashboard: '首頁',
    bug:'bug就是bug'
  }
}

src/lang/en.js

export default {
  lang: {
    dashboard: 'Dashboard',
    bug:'bug is a bug'
  }
}

第四步,在index.js中同樣引入該語言包

import customZH from './zh' // 引入自定義中文包
import customEN from './en' // 引入自定義英文包
Vue.use(VueI18n) // 全局注冊國際化包
export default new VueI18n({
  locale: 'zh', // 從cookie中獲取語言類型 獲取不到就是中文
  messages: {
    en: {
      ...elementEN, // 將餓了么的英文語言包引入
      ...customEN
    },
    zh: {
      ...elementZH, // 將餓了么的中文語言包引入
      ...customZH
    }
  }
})

自定義語言包的內容怎么使用?

第五步,在App.vue中應用

當我們全局注冊i18n的時候,每個組件都會擁有一個 $t 的方法,它會根據傳入的key,自動的去尋找當前語言的文本,我們可以將左側菜單變成多語言展示文本

App.vue

<template>
  <div id="app">
   <h2 v-text="$t('lang.dashboard')"></h2>
   <h2 v-text="$t('lang.bug')"></h2>
  </div>
</template>

注意:當文本的值為嵌套時,可以通過 $t('key1.key2.key3...') 的方式獲取

現在已經完成了多語言的接入,接下來封裝切換多語言的組件

封裝多語言插件

第六步,封裝多語言組件 src/components/lang/index.vue

<template>
  <el-dropdown trigger="click" @command="changeLanguage">
    <!-- 這里必須加一個div -->
    <div>
      <el-button type="primary">切換多語言</el-button>
    </div>
    <el-dropdown-menu slot="dropdown">
      <el-dropdown-item command="zh" :disabled="'zh'=== $i18n.locale ">中文</el-dropdown-item>
      <el-dropdown-item command="en" :disabled="'en'=== $i18n.locale ">en</el-dropdown-item>
    </el-dropdown-menu>
  </el-dropdown>
</template>

<script>
export default {
  methods: {
    changeLanguage(lang) {
      this.$i18n.locale = lang // 設置給本地的i18n插件
      this.$message.success('切換多語言成功')
    }
  }
}
</script>

第七步,在App.vue中引入

 <!-- 切換多語言 -->
 <template>
  <div id="app">
    <lang/>
    <el-divider/>
    <el-divider/>
    <el-divider/>
   <h2 v-text="$t('lang.dashboard')"></h2>
   <h2 v-text="$t('lang.bug')"></h2>
  </div>
</template>

vue中elementUI里的插件怎么使用

vue中elementUI里的插件怎么使用

感謝各位的閱讀,以上就是“vue中elementUI里的插件怎么使用”的內容了,經過本文的學習后,相信大家對vue中elementUI里的插件怎么使用這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

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

AI

马山县| 赣州市| 南阳市| 荆门市| 资讯| 泰州市| 兴隆县| 正宁县| 平潭县| 陆良县| 枣强县| 德昌县| 岢岚县| 淳安县| 高唐县| 石首市| 布尔津县| 武川县| 新绛县| 集贤县| 徐水县| 阿尔山市| 甘南县| 多伦县| 离岛区| 黄龙县| 苍梧县| 偏关县| 马龙县| 缙云县| 浑源县| 贺州市| 达拉特旗| 旬邑县| 阳谷县| 大兴区| 金川县| 沁水县| 南漳县| 吴堡县| 阿图什市|