国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

vue3集成Element-plus實現(xiàn)按需自動引入組件的方法匯總

3403771864 / 1455人閱讀

  本篇文章就是介紹關(guān)于vue3集成Element-plus實現(xiàn)按需自動引入組件的相關(guān)資料,為了讓大家詳細(xì)了解,附有詳細(xì)內(nèi)容。

  element-plus正是element-ui針對于vue3開發(fā)的一個UI組件庫,

  它的使用方式和很多其他的組件庫是一樣的,其他類似于ant-design-vue、NaiveUI、VantUI都是差不多的;安裝element-plus

  首先下載element-plus

  npm install element-plus

  1、第一種方式,使用全局引入

  引入element-plus的方式是全局引入,代表的含義是所有的組件和插件都會被自動注冊,

  優(yōu)點:上手快

  缺點:會增大包的體積

  在main.ts文件中

  import { createApp } from 'vue'
  // 全局引入
  import ElementPlus from 'element-plus'
  import 'element-plus/dist/index.css'
  import App from './App.vue'
  import router from './router'
  import store from './store'
  const app = createApp(App)
  app.use(router)
  app.use(store)
  app.use(ElementPlus)
  app.mount('#app')

  2、第二種方式,使用局部引入

  局部引入也就是在開發(fā)中用到某個組件對某個組件進(jìn)行引入,

  <template>
  <div>
  <el-button>Default</el-button>
  <el-button type="primary">Primary</el-button>
  <el-button type="success">Success</el-button>
  <el-button type="info">Info</el-button>
  <el-button type="warning">Warning</el-button>
  <el-button type="danger">Danger</el-button>
  <el-button>中文</el-button>
  </div>
  </template>
  <script>
  import { defineComponent } from 'vue'
  // 局部引入
  import { ElButton } from 'element-plus'
  import 'element-plus/theme-chalk/el-button.css'
  import 'element-plus/theme-chalk/base.css'
  export default defineComponent({
  components: { ElButton },
  setup() {
  return {}
  }
  })
  </script>
  <style></style>

  要注意的是在開發(fā)時每次使用都要手動在組件中引入對應(yīng)的css樣式,這樣使用時就會很麻煩

  3、按需自動引入element-plus推薦

  需要安裝unplugin-vue-components和unplugin-auto-import這兩款插件

  npm install -D unplugin-vue-components unplugin-auto-import

  安裝完成之后在vue.config.js文件中配置

  // vue.config.js
  const AutoImport = require('unplugin-auto-import/webpack')
  const Components = require('unplugin-vue-components/webpack')
  const { ElementPlusResolver } = require('unplugin-vue-components/resolvers')
  module.exports = {
  outputDir: './build',
  // 和webpapck屬性完全一致,最后會進(jìn)行合并
  configureWebpack: {
  resolve: {
  alias: {
  components: '@/components'
  }
  },
  //配置webpack自動按需引入element-plus,
  plugins: [
  AutoImport({
  resolvers: [ElementPlusResolver()]
  }),
  Components({
  resolvers: [ElementPlusResolver()]
  })
  ]
  }
  }

   按需自動引入配置完之后,在組件中可直接使用,不需要引用和注冊 這里已經(jīng)實現(xiàn)了按需自動移入Element-plus組件 組件中直接使用:

  <template>
  <div>
  <el-button>Default</el-button>
  <el-button type="primary">Primary</el-button>
  <el-button type="success">Success</el-button>
  <el-button type="info">Info</el-button>
  <el-button type="warning">Warning</el-button>
  <el-button type="danger">Danger</el-button>
  <el-button>中文</el-button>
  </div>
  </template>
  <script>
  import { defineComponent } from 'vue'
  export default defineComponent({
  setup() {
  return {}
  }
  })
  </script>
  <style></style>

  效果:

1.png

  歡迎大家觀看更多精彩內(nèi)容。


文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/128378.html

相關(guān)文章

  • Vue3+Element-plus項目自動導(dǎo)入報錯解決方案

      在項目中遇見很多問題,報錯是其中常見問題之一,例如在創(chuàng)建 Vue3 + Element-plus 項目中安裝插件,在按照要求配置后運行項目,npm 報錯,究竟是怎么回事那? 我們在 采用自動導(dǎo)入,Element-plus 文檔后,安裝 unplugin-vue-components 和 unplugin-auto-import 兩款插件,之后就運行項目,結(jié)果出現(xiàn)npm 報錯  ERROR ...

    3403771864 評論0 收藏0
  • Vue3實現(xiàn)刷新頁面局部內(nèi)容示例代碼

      可以用實現(xiàn)局部組件(dom)的重新渲染可以實現(xiàn)頁面的局部刷新。有一個最簡單辦法,我們可以用Vue中的v-if指令來實現(xiàn)。  我們的思路是:除了上述用Vue中的v-if指令來實現(xiàn),我們也可以用另一個方法就是新建一個空白組件,需要刷新局部頁面時跳轉(zhuǎn)至這個空白組件頁面,然后在空白組件內(nèi)的beforeRouteEnter守衛(wèi)中又跳轉(zhuǎn)回原來的頁面。  如下圖所示,在Vue3.X中不僅可以實現(xiàn)點擊刷新,按...

    3403771864 評論0 收藏0
  • Vue3管理后臺項目實現(xiàn)高德地圖選點

      現(xiàn)在客戶來了一個項目簡況:有一個業(yè)務(wù)場景是添加門店的地址和經(jīng)緯度,地址可以輸入,參考用經(jīng)緯度當(dāng)然不行,目前有最好方式就是讓用戶在地圖上搜索或者直接點擊獲取點的經(jīng)緯度等詳細(xì)信息。現(xiàn)在我們就看具體的內(nèi)容。  登錄高德開放平臺  創(chuàng)建應(yīng)用,添加Key,選擇Web端(JS API),生成Key和安全密鑰  引入地圖 JSAPI  項目中使用了官方推薦的 JSAPILoader 來加載地圖  安裝官方 ...

    3403771864 評論0 收藏0
  • 關(guān)于Vue2一些值得推薦文章 -- 五、六月份

    摘要:五六月份推薦集合查看最新的請點擊集前端最近很火的框架資源定時更新,歡迎一下。蘇幕遮燎沈香宋周邦彥燎沈香,消溽暑。鳥雀呼晴,侵曉窺檐語。葉上初陽乾宿雨,水面清圓,一一風(fēng)荷舉。家住吳門,久作長安旅。五月漁郎相憶否。小楫輕舟,夢入芙蓉浦。 五、六月份推薦集合 查看github最新的Vue weekly;請::點擊::集web前端最近很火的vue2框架資源;定時更新,歡迎 Star 一下。 蘇...

    sutaking 評論0 收藏0

發(fā)表評論

0條評論

最新活動
閱讀需要支付1元查看
<