forked from forks/ffprobe-wasm
FFmpeg to WASM build setup + Vue app.
This commit is contained in:
21
www/src/main.js
Normal file
21
www/src/main.js
Normal file
@@ -0,0 +1,21 @@
|
||||
import Vue from 'vue'
|
||||
import BootstrapVue from 'bootstrap-vue';
|
||||
import App from './App.vue'
|
||||
|
||||
import 'bootstrap/dist/css/bootstrap.css';
|
||||
import 'bootstrap-vue/dist/bootstrap-vue.css';
|
||||
|
||||
// import("hello").then(mod => {
|
||||
// Vue.prototype.$mp4 = mod;
|
||||
|
||||
|
||||
Vue.use(BootstrapVue);
|
||||
|
||||
Vue.config.productionTip = false
|
||||
|
||||
new Vue({
|
||||
render: h => h(App),
|
||||
}).$mount('#app')
|
||||
// });
|
||||
|
||||
|
||||
Reference in New Issue
Block a user