Fix #696: Embed component name that could lead to issue when developping on OSX

This commit is contained in:
Eliot Berriot 2019-02-07 16:23:14 +01:00
parent 2f100ab9a7
commit c15b4381bb
No known key found for this signature in database
GPG Key ID: DD6965E2476E5C27
3 changed files with 4 additions and 3 deletions

View File

@ -0,0 +1 @@
Fixed Embed component name that could lead to issue when developping on OSX (#696)

View File

@ -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 }
})