OpenAnts是基于ElementUI的VUE组件库。
截图安装npminstallopenants-Soryarnaddopenants快速开始OpenAnts组件是基于Element开发,所以在你安装安装OpenAnts我们将自动帮你安装ElementUI,而无需你自己安装,我们建议elementUI全局引入!全局使用OpenAntsmain.js中的配置importVuefrom'vue';importElementUIfrom'element-ui';//需要引入element-uiimport'element-ui/lib/theme-chalk/index.css';//需要引入element-ui的主题文件importOpenAntsfrom'openants';//需要引入OpenAntsimport"openants/lib/openants.css";//需要引入OpenAnts的css文件importAppfrom'./App.vue';Vue.use(ElementUI);//将ElementUI组件注册到VUEVue.use(OpenAnts);//将ElementUIOpenAntsnewVue({el:'#app',render:h=>h(App)});按需使用OpenAntsmain.js中的配置
importVuefrom'vue';importElementUIfrom'element-ui';//需要引入element-uiimport'element-ui/lib/theme-chalk/index.css';//需要引入element-ui的主题文件import{btn,xxx}from'openants';//需要引入OpenAntsimport"openants/lib/openants.css";//需要引入OpenAnts的css文件importAppfrom'./App.vue';Vue.use(ElementUI);//将ElementUI组件注册到VUEVue.component(btn.name,btn);Vue.component(xxx.name,xxx);/*或写为*Vue.use(btn)*Vue.use(xxx)*/newVue({el:'#app',render:h=>h(App)});完整教程https://docs.unpor.com/docs/openants_for_vue/openants_for_vue-1c9f9qf36cnl9
评论