15 lines
258 B
JavaScript
15 lines
258 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',
|
|
template: '<EmbedFrame/>',
|
|
components: { EmbedFrame }
|
|
})
|