How to use the buefy.default function in buefy

To help you get started, we’ve selected a few buefy examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github MyScienceWork / PolarisOS / front / frontend / main.js View on Github external
const AlternativeWidget = require('./components/themes/main/widgets/alternative_widget/AlternativeWidget.vue');
const MediaWidget = require('./components/themes/main/widgets/media_widget/MediaWidget.vue');


const App = require('./pages/App.vue');


const LOCALE = BrowserUtils.getDefaultLanguage();
moment.locale(LOCALE.toLowerCase());

Object.defineProperty(Vue.prototype, '$lodash', { value: _ });

Vue.use(VueScrollTo);
Vue.use(SocialSharing);

Vue.use(Buefy.default, {
    defaultIconPack: 'fa',
});

Vue.use(VueWysiwyg.default, {
    hideModules: { image: true },
});

Vue.component('loader', Loader);
Vue.component('stepper', Stepper);
Vue.component('fform', Form);
Vue.component('finput', Input);
Vue.component('fcolor', ColorInput);
Vue.component('fselect', Select);
Vue.component('fstatic', Static);
Vue.component('fdropzone', Dropzone);
Vue.component('fhselect', HierarchicalSelect);
github MyScienceWork / PolarisOS / front / backoffice / main.js View on Github external
const Dropzone = require('../common/components/main/forms/dropzone/Dropzone.vue');

const ActionButton = require('./components/themes/main/components/action_button/ActionButton.vue');
const Widget = require('../common/components/main/widget/Widget.vue');

const App = require('./pages/App.vue');

Vue.use(VueScrollTo);


const introJs = require('intro.js');

window.introJs = introJs;
Vue.use(VueIntro);

Vue.use(Buefy.default, {
    defaultIconPack: 'fa',
});

Vue.use(VueWysiwyg.default, {
    hideModules: { image: true },
});

Vue.component('loader', Loader);
Vue.component('fform', Form);
Vue.component('finput', Input);
Vue.component('fcolor', ColorInput);
Vue.component('fselect', Select);
Vue.component('fstatic', Static);
Vue.component('fgrid', Grid);
Vue.component('fvariadic-element', VariadicElement);
Vue.component('fdropzone', Dropzone);