Explorar el Código

fix prop filter test

Evan You hace 10 años
padre
commit
e8d8ed790e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      test/unit/specs/directives/internal/prop_spec.js

+ 1 - 1
test/unit/specs/directives/internal/prop_spec.js

@@ -40,7 +40,7 @@ if (_.inBrowser) {
     it('with filters', function (done) {
       var vm = new Vue({
         el: el,
-        template: '<test name:="a | test"></test>',
+        template: '<test bind-name="a | test"></test>',
         data: {
           a: 123
         },