diff --git a/src/plugins/icons.js b/src/plugins/icons.js new file mode 100644 index 0000000..5fb3cdf --- /dev/null +++ b/src/plugins/icons.js @@ -0,0 +1,10 @@ +import * as components from "@element-plus/icons-vue"; + +export default{ + install:(app)=>{ + for (const key in components){ + const componentConfig = components[key]; + app.component(componentConfig.name, componentConfig); + } + } +} \ No newline at end of file