Commit ffdb5001e041cfa61768ff66578c0468ae8a0805

Authored by 梁灏
1 parent fabc2496

update Alert Icon

Showing 1 changed file with 4 additions and 4 deletions   Show diff stats
src/components/alert/alert.vue
@@ -80,16 +80,16 @@ @@ -80,16 +80,16 @@
80 80
81 switch (this.type) { 81 switch (this.type) {
82 case 'success': 82 case 'success':
83 - type = 'ios-checkmark'; 83 + type = 'ios-checkmark-circle';
84 break; 84 break;
85 case 'info': 85 case 'info':
86 - type = 'ios-information'; 86 + type = 'ios-information-circle';
87 break; 87 break;
88 case 'warning': 88 case 'warning':
89 - type = 'android-alert'; 89 + type = 'ios-alert';
90 break; 90 break;
91 case 'error': 91 case 'error':
92 - type = 'ios-close'; 92 + type = 'ios-close-circle';
93 break; 93 break;
94 } 94 }
95 95