mirror of
https://github.com/Xevion/power-math.git
synced 2025-12-10 12:08:03 -06:00
17 lines
337 B
JavaScript
17 lines
337 B
JavaScript
import Vue from 'vue'
|
|
import VueKatex from 'vue-katex';
|
|
import Buefy from 'buefy';
|
|
import App from './App.vue'
|
|
import 'katex/dist/katex.min.css';
|
|
import 'buefy/dist/buefy.css';
|
|
import 'animate.css/animate.min.css';
|
|
|
|
|
|
Vue.config.productionTip = false
|
|
Vue.use(Buefy)
|
|
Vue.use(VueKatex)
|
|
|
|
new Vue({
|
|
render: h => h(App),
|
|
}).$mount('#app')
|