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

溫馨提示×

溫馨提示×

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

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

element-plus中怎么實現按需導入與全局導入

發布時間:2021-11-25 11:11:44 來源:億速云 閱讀:686 作者:小新 欄目:開發技術

這篇文章主要介紹了element-plus中怎么實現按需導入與全局導入,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

按需導入:

安裝插件

首先需要引入額外的插件:前**vite-plugin-components已重命名為unplugin-vue-components**

npm install unplugin-vue-components

配置插件

在weapack或vite配置文件內中添加配置

// vite.config.ts
import Components from 'unplugin-vue-components/vite'
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'

export default {
  plugins: [
    // ...
    Components({
      resolvers: [ElementPlusResolver()],
    }),
  ],
}
// webpack.config.js
const Components = require('unplugin-vue-components/webpack')
const { ElementPlusResolver } = require('unplugin-vue-components/resolvers')

module.exports = {
  // ...
  plugins: [
    Components({
      resolvers: [ElementPlusResolver()],
    }),
  ],
}
//main.ts
import { createApp } from 'vue'
import App from './App.vue'

import { Edit,Search } from '@element-plus/icons'  //圖標需要分開導入,按需導入圖標
import { ElButton } from 'element-plus';   //按需導入

const app = createApp(App);
//注冊組件
app.component("edit", Edit)
app.component("search", Search)
app.component('ElButton',ElButton)
app.mount('#app');
<template>
    <h3>home頁面</h3>
    <el-button type="primary" >主要按鈕</el-button>
    <el-button type="success" >成功按鈕</el-button>
    <el-icon :size="20" :color="'blue'">
        <edit />
    </el-icon>
    <el-icon :size="20">
        <search></search>
    </el-icon>
</template>
<script setup lang="ts"> 
</script>

全局導入

推薦添加

// tsconfig.json
{
  "compilerOptions": {
    // ...
    "types": ["element-plus/global"]
  }
}

安裝

npm install element-plus --save
# or
yarn add element-plus

# 安裝icon圖標依賴庫
npm install @element-plus/icons
# or
yarn add @element-plus/icons

在main.ts 文件中全局配置

import { createApp } from 'vue'
import App from './App.vue'
import { store, key } from './store';
// 注入路由
import router from './router';

// 全局引入ui庫
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'

const app = createApp(App);
app.use(store, key);
app.use(router);
app.use(ElementPlus);
app.mount('#app');

使用ui組件

使用圖標,因為圖標和普通ui組件不是同一個包,使用需要分別導入

//導入具體的組件后直接使用
<template>
    <el-icon :size="20" :color="'blue'">
        <edit />
    </el-icon>
</template>
<script setup lang="ts">
    import { Edit } from '@element-plus/icons'
</script>

將圖標庫在main.ts文件中impott并使用app.component()注冊便可以直接在組件中使用了,和普通的使用ui庫同理

<template>
    <h3>home頁面</h3>
    <el-button type="primary" >主要按鈕</el-button>
    <el-button type="success" >成功按鈕</el-button>
    <el-icon :size="20" :color="'blue'">
        <edit />
    </el-icon>
    <el-icon :size="20">
        <search></search>
    </el-icon>
</template>
<script setup lang="ts"> 
</script>

感謝你能夠認真閱讀完這篇文章,希望小編分享的“element-plus中怎么實現按需導入與全局導入”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

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

AI

远安县| 潢川县| 南安市| 拜城县| 岳池县| 盈江县| 东乡县| 应用必备| 黔南| 电白县| 滁州市| 依兰县| 会同县| 明水县| 广汉市| 金寨县| 明星| 冕宁县| 双城市| 镇江市| 奈曼旗| 敖汉旗| 嫩江县| 苏尼特左旗| 土默特右旗| 唐河县| 读书| 察雅县| 衡南县| 康保县| 杂多县| 鹿邑县| 大城县| 象州县| 伊春市| 仁寿县| 逊克县| 南漳县| 南川市| 乾安县| 青阳县|