瀏覽代碼

add missing iview components

Michael Wang 6 年之前
父節點
當前提交
83bb27b9b3
共有 1 個文件被更改,包括 5 次插入1 次删除
  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;