UNPKG
vue-jazzicon
Version:
latest (0.1.3)
0.1.3
0.1.2
0.1.0
Vue component for danfinlay/jazzicon
vue-jazzicon
/
src
/
main.js
11 lines
(8 loc)
•
216 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
Vue
from
'vue'
;
import
App
from
'./App.vue'
;
import
Jazzicon
from
'./components'
;
Vue
.
config
.
productionTip
=
false
;
Vue
.
component
(
Jazzicon
.
name
,
Jazzicon
);
new
Vue
({
render
:
h
=>
h
(
App
) }).$mount(
'#app'
);