Procházet zdrojové kódy

add missing iview components

Michael Wang před 6 roky
rodič
revize
83bb27b9b3
1 změnil soubory, kde provedl 5 přidání a 1 odebrání
  1. 5 1
      src/plugins/iview.js

+ 5 - 1
src/plugins/iview.js

@@ -16,7 +16,9 @@ import {
   Select,
   Spin,
   Notice,
-  Option
+  Option,
+  Progress,
+  Alert
 } from "iview";
 Vue.component("Button", Button);
 Vue.component("Form", Form);
@@ -33,6 +35,8 @@ Vue.component("Select", Select);
 Vue.component("Spin", Spin);
 Vue.component("Notice", Notice);
 Vue.component("Option", Option);
+Vue.component("Progress", Progress);
+Vue.component("Alert", Alert);
 
 Vue.prototype.$Message = Message;
 Vue.prototype.$Modal = Modal;