@@ -87,7 +87,7 @@ if (_.inBrowser) {
8787 it ( 'dynamic' , function ( done ) {
8888 var vm = new Vue ( {
8989 el : el ,
90- template : '<component type ="{{view}}" v-attr="view:view"></component>' ,
90+ template : '<component is ="{{view}}" v-attr="view:view"></component>' ,
9191 data : {
9292 view : 'a'
9393 } ,
@@ -125,7 +125,7 @@ if (_.inBrowser) {
125125 var spyB = jasmine . createSpy ( )
126126 var vm = new Vue ( {
127127 el : el ,
128- template : '<component type ="{{view}}" keep-alive></component>' ,
128+ template : '<component is ="{{view}}" keep-alive></component>' ,
129129 data : {
130130 view : 'a'
131131 } ,
@@ -252,7 +252,7 @@ if (_.inBrowser) {
252252 data : {
253253 view : 'a'
254254 } ,
255- template : '<component type ="{{view}}" wait-for="ok"></component>' ,
255+ template : '<component is ="{{view}}" wait-for="ok"></component>' ,
256256 components : {
257257 a : {
258258 template : 'AAA'
@@ -282,7 +282,7 @@ if (_.inBrowser) {
282282 data : {
283283 view : 'a'
284284 } ,
285- template : '<component type ="{{view}}" v-transition="test" transition-mode="in-out"></component>' ,
285+ template : '<component is ="{{view}}" v-transition="test" transition-mode="in-out"></component>' ,
286286 components : {
287287 a : { template : 'AAA' } ,
288288 b : { template : 'BBB' }
@@ -322,7 +322,7 @@ if (_.inBrowser) {
322322 data : {
323323 view : 'a'
324324 } ,
325- template : '<component type ="{{view}}" v-transition="test" transition-mode="out-in"></component>' ,
325+ template : '<component is ="{{view}}" v-transition="test" transition-mode="out-in"></component>' ,
326326 components : {
327327 a : { template : 'AAA' } ,
328328 b : { template : 'BBB' }
@@ -356,7 +356,7 @@ if (_.inBrowser) {
356356 it ( 'teardown' , function ( done ) {
357357 var vm = new Vue ( {
358358 el : el ,
359- template : '<component type ="{{view}}" keep-alive></component>' ,
359+ template : '<component is ="{{view}}" keep-alive></component>' ,
360360 data : {
361361 view : 'test'
362362 } ,
0 commit comments