@@ -28,7 +28,7 @@ function createInstanceContext (
data: data
};
- // Each instance has a independent `Vue` module instance
+ // Each instance has an independent `Vue` module instance
var Vue = instance.Vue = createVueModuleInstance(instanceId, weex);
// DEPRECATED
@@ -22,7 +22,7 @@ export function createInstanceContext (
data
}
const Vue = instance.Vue = createVueModuleInstance(instanceId, weex)
@@ -7,7 +7,7 @@ describe('Component async', () => {
const oldClearTimeout = window.clearTimeout;
// will contain pending timeouts set during the test iteration
- // will contain the id of the timeout as the key, and the the millisecond timeout as the value
+ // will contain the id of the timeout as the key, and the millisecond timeout as the value
// this helps to identify the timeout that is still pending
let timeoutsPending = {};
@@ -31,7 +31,7 @@ describe('Directive v-on', () => {
expect(event.type).toBe('click')
})
- it('should bind event to a inline statement', () => {
+ it('should bind event to an inline statement', () => {
vm = new Vue({
el,
template: '<div v-on:click="foo(1,2,3,$event)"></div>',