Forráskód Böngészése

add missing iview components

Michael Wang 6 éve
szülő
commit
83bb27b9b3
1 módosított fájl, 5 hozzáadás és 1 törlés
  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;