Détail du package

vue-add-globals

eddyerburgh4.4kMIT2.0.1

Add vue instance methods, directives, mixins and properties

vue

readme

vue-add-globals

Add globals to Vue. Use it in tests to mock global methods and properties.

Example

Adding a property and method to Vue

import addGlobals from 'vue-add-globals'
import Vue from 'vue'

const $someMethod = () => ({})
const someProp = 'prop'
addGlobals(Vue, {
  $someMethod: $someMethod,
  someProp: someProp
})
const Ctor = Vue.extend(TestComponent)
const vm = new Ctor().$mount()

t.is(vm.$someMethod, $someMethod)
t.is(vm.someProp, someProp)

Installation

npm install --save-dev vue-add-globals

Usage

  • Import 'vue-add-globals'
  • Call it with object of global properties to add
import addGlobals from 'vue-add-globals'

addGlobals(Vue, { $mockedMethod: mockedMethod })

You can keep the global Vue class clean by using Vue.extend():

import addGlobals from 'vue-add-globals'
import Vue from 'vue'

const freshVue = Vue.extend()

addGlobals(freshVue, { $mockedMethod: mockedMethod })

changelog

2.0.1 / 07-31-2017

  • Remove /test from npm package

2.0.0 / 07-18-2017

  • Change API to augment Vue passed to function

1.0.1 / 05-03-2017

  • Replace arrow function with anonymous function

1.0.0 / 05-03-2017

  • Initial release 🍾