You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.0 KiB
42 lines
1.0 KiB
import axios from 'axios';
|
|
import wNumb from 'wnumb';
|
|
import Vue from 'vue';
|
|
import Stepper from './Stepper.vue';
|
|
import RadioGrid from './components/RadioGrid.vue';
|
|
import Pagination from './components/Pagination.vue';
|
|
import VBtn from './components/VBtn.vue';
|
|
import VText from './components/VText.vue';
|
|
import svg from './svg.mixin.js';
|
|
|
|
Vue.mixin(svg);
|
|
Vue.component('radio-grid', RadioGrid);
|
|
Vue.component('stepper', Stepper);
|
|
Vue.component('v-btn', VBtn);
|
|
Vue.component('pagination', Pagination);
|
|
Vue.component('v-text', VText);
|
|
const app = new Vue();
|
|
app.$mount(document.getElementById('stepper-main'));
|
|
|
|
var units = window.units = {
|
|
currency: wNumb({
|
|
mark: ',',
|
|
thousand: '.',
|
|
prefix: '',
|
|
suffix: '',
|
|
decimals: 0
|
|
}),
|
|
decimalCurrency: wNumb({
|
|
mark: ',',
|
|
thousand: '.',
|
|
prefix: '',
|
|
suffix: '',
|
|
decimals: 2
|
|
}),
|
|
percent: wNumb({
|
|
mark: ',',
|
|
thousand: '',
|
|
prefix: '',
|
|
suffix: '',
|
|
decimals: 2
|
|
})
|
|
};
|