funquail/front/src/embed.js
Eliot Berriot ab73752f55
See #880: removed vue runtime to remove "eval()" calls
Needed for CSP, and also helps with redusing JS size ;)
2019-07-18 10:21:54 +02:00

17 lines
276 B
JavaScript

import Vue from 'vue'
import EmbedFrame from './EmbedFrame'
import VuePlyr from 'vue-plyr'
Vue.use(VuePlyr)
Vue.config.productionTip = false
/* eslint-disable no-new */
new Vue({
el: '#app',
render (h) {
return h('EmbedFrame')
},
components: { EmbedFrame }
})