File tree Expand file tree Collapse file tree 4 files changed +433
-19
lines changed Expand file tree Collapse file tree 4 files changed +433
-19
lines changed Original file line number Diff line number Diff line change @@ -8,23 +8,9 @@ export default {
8
8
}
9
9
</script >
10
10
11
- <!-- <style lang="scss">-->
12
- <!-- /* Import Font Awesome Icons Set */-->
13
- <!-- $fa-font-path: '~font-awesome/fonts/';-->
14
- <!-- @import '~font-awesome/scss/font-awesome.scss';-->
15
- <!-- /* Import Simple Line Icons Set */-->
16
- <!-- $simple-line-font-path: '~simple-line-icons/fonts/';-->
17
- <!-- @import '~simple-line-icons/scss/simple-line-icons.scss';-->
18
- <!-- /* Import Flag Icons Set */-->
19
- <!-- @import '~flag-icon-css/sass/flag-icon.scss';-->
20
- <!-- /* Import Bootstrap Vue Styles */-->
21
- <!-- @import 'bootstrap-vue/dist/bootstrap-vue.css';-->
22
- <!-- /* Import Main styles for this application */-->
23
- <!-- @import '../scss/style';-->
24
- <!-- /*@import './assets/scss/style';*/-->
25
- <!-- </style>-->
26
-
27
11
<style lang="scss">
12
+ // CoreUI Icons Set
13
+ @import ' ../node_modules/@coreui/icons/css/coreui-icons.min.css' ;
28
14
/* Import Font Awesome Icons Set */
29
15
$fa-font-path : ' ~font-awesome/fonts/' ;
30
16
@import ' ~font-awesome/scss/font-awesome.scss' ;
Original file line number Diff line number Diff line change @@ -157,14 +157,19 @@ export default {
157
157
icon : 'icon-star' ,
158
158
children : [
159
159
{
160
- name : 'Flags ' ,
161
- url : '/icons/flags ' ,
160
+ name : 'CoreUI Icons ' ,
161
+ url : '/icons/coreui-icons ' ,
162
162
icon : 'icon-star' ,
163
163
badge : {
164
- variant : 'success ' ,
164
+ variant : 'info ' ,
165
165
text : 'NEW'
166
166
}
167
167
} ,
168
+ {
169
+ name : 'Flags' ,
170
+ url : '/icons/flags' ,
171
+ icon : 'icon-star'
172
+ } ,
168
173
{
169
174
name : 'Font Awesome' ,
170
175
url : '/icons/font-awesome' ,
Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ import BrandButtons from '@/views/buttons/BrandButtons'
40
40
import Flags from '@/views/icons/Flags'
41
41
import FontAwesome from '@/views/icons/FontAwesome'
42
42
import SimpleLineIcons from '@/views/icons/SimpleLineIcons'
43
+ import CoreUIIcons from '@/views/icons/CoreUIIcons'
43
44
44
45
// Views - Notifications
45
46
import Alerts from '@/views/notifications/Alerts'
@@ -223,6 +224,11 @@ export default new Router({
223
224
render ( c ) { return c ( 'router-view' ) }
224
225
} ,
225
226
children : [
227
+ {
228
+ path : 'coreui-icons' ,
229
+ name : 'CoreUI Icons' ,
230
+ component : CoreUIIcons
231
+ } ,
226
232
{
227
233
path : 'flags' ,
228
234
name : 'Flags' ,
You can’t perform that action at this time.
0 commit comments