mirror of
https://github.com/ArthurDanjou/website-old.git
synced 2026-01-14 12:14:42 +01:00
9 lines
140 B
JavaScript
9 lines
140 B
JavaScript
import Vue from 'vue'
|
|
|
|
const globalComponents = {
|
|
}
|
|
|
|
for (const name in globalComponents) {
|
|
Vue.component(name, globalComponents[name])
|
|
}
|