Fix #696: Embed component name that could lead to issue when developping on OSX
This commit is contained in:
parent
2f100ab9a7
commit
c15b4381bb
|
@ -0,0 +1 @@
|
|||
Fixed Embed component name that could lead to issue when developping on OSX (#696)
|
|
@ -1,6 +1,6 @@
|
|||
|
||||
import Vue from 'vue'
|
||||
import Embed from './Embed'
|
||||
import EmbedFrame from './EmbedFrame'
|
||||
import VuePlyr from 'vue-plyr'
|
||||
|
||||
Vue.use(VuePlyr)
|
||||
|
@ -10,6 +10,6 @@ Vue.config.productionTip = false
|
|||
/* eslint-disable no-new */
|
||||
new Vue({
|
||||
el: '#app',
|
||||
template: '<Embed/>',
|
||||
components: { Embed }
|
||||
template: '<EmbedFrame/>',
|
||||
components: { EmbedFrame }
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue