FFmpeg to WASM build setup + Vue app.

This commit is contained in:
Alf
2020-09-23 19:06:40 -07:00
commit 711903032c
20 changed files with 12826 additions and 0 deletions

21
www/src/main.js Normal file
View 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')
// });