2020-11-17 05:15:35 +00:00
|
|
|
import { createApp } from 'vue'
|
|
|
|
import { library } from '@fortawesome/fontawesome-svg-core'
|
|
|
|
import { faThumbsUp, faThumbsDown, faEye } from '@fortawesome/free-solid-svg-icons'
|
|
|
|
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
|
|
|
|
library.add(faThumbsUp, faThumbsDown, faEye)
|
|
|
|
|
2021-01-01 20:05:44 +00:00
|
|
|
import("uikit/src/less/uikit.less")
|
|
|
|
import("uikit/dist/js/uikit.min.js")
|
2020-11-17 05:15:35 +00:00
|
|
|
|
|
|
|
import router from '@/router/router'
|
|
|
|
import App from './App.vue'
|
|
|
|
|
|
|
|
import './registerServiceWorker'
|
|
|
|
|
2020-11-27 06:46:36 +00:00
|
|
|
const mixin = {
|
|
|
|
methods: {
|
|
|
|
timeFormat: function (duration) {
|
|
|
|
|
|
|
|
var pad = function (num, size) {
|
|
|
|
return ("000" + num).slice(size * -1);
|
|
|
|
};
|
|
|
|
|
|
|
|
var time = parseFloat(duration).toFixed(3),
|
|
|
|
hours = Math.floor(time / 60 / 60),
|
|
|
|
minutes = Math.floor(time / 60) % 60,
|
|
|
|
seconds = Math.floor(time - minutes * 60);
|
|
|
|
|
|
|
|
var str = "";
|
|
|
|
|
2021-01-07 08:03:10 +00:00
|
|
|
if (hours > 0) str += hours + ":";
|
2020-11-27 06:46:36 +00:00
|
|
|
|
|
|
|
str += pad(minutes, 2) + ":" + pad(seconds, 2);
|
|
|
|
|
|
|
|
return str;
|
|
|
|
|
2021-02-24 09:35:41 +00:00
|
|
|
},
|
|
|
|
fetchJson: function (url, options) {
|
|
|
|
return fetch(url, options)
|
|
|
|
.then(response => {
|
|
|
|
return response.json();
|
|
|
|
})
|
2020-11-27 06:46:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-17 05:15:35 +00:00
|
|
|
const app = createApp(App)
|
|
|
|
app.use(router)
|
2020-11-27 06:46:36 +00:00
|
|
|
app.mixin(mixin)
|
2020-11-17 05:15:35 +00:00
|
|
|
app.component('font-awesome-icon', FontAwesomeIcon)
|
|
|
|
app.mount('#app')
|