0.0.10 • Published 10 months ago

element-plus-extend v0.0.10

Weekly downloads
-
License
MIT
Repository
-
Last release
10 months ago

element-plus-extend

  • 💪 Vue 3
  • 🔥 TypeScript

文档

安装

pnpm install element-plus-extend
// main.ts
import { createApp } from 'vue'
import ElementPlus from "element-plus";
import ElementPlusExtend from "element-plus-crx";
import * as ElementPlusIconsVue from "@element-plus/icons-vue";

import App from './App.vue'

const app = createApp(App)
app.use(ElementPlus);
app.use(ElementPlusExtend);

for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
  app.component(key, component);
}

app.mount('#app')

使用

<template>
  <lc-input v-model="val"></lc-input>
</template>

<script lang="ts" setup>
  import { ref } from 'vue';
  const val = ref('');
</script>
0.0.10

10 months ago

0.0.9

10 months ago

0.0.8

10 months ago

0.0.7

10 months ago

0.0.6

10 months ago

0.0.5

10 months ago

0.0.4

10 months ago

0.0.3

10 months ago

0.0.2

10 months ago

0.0.1

10 months ago