mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 08:44:49 +00:00
20 lines
404 B
JavaScript
20 lines
404 B
JavaScript
|
import Vue from 'vue';
|
||
|
window.Vue = Vue;
|
||
|
import BootstrapVue from 'bootstrap-vue'
|
||
|
Vue.use(BootstrapVue);
|
||
|
|
||
|
Vue.component(
|
||
|
'portfolio-post',
|
||
|
require('./components/PortfolioPost.vue').default
|
||
|
);
|
||
|
|
||
|
Vue.component(
|
||
|
'portfolio-profile',
|
||
|
require('./components/PortfolioProfile.vue').default
|
||
|
);
|
||
|
|
||
|
Vue.component(
|
||
|
'portfolio-settings',
|
||
|
require('./components/PortfolioSettings.vue').default
|
||
|
);
|