feat(): initial vue support

This commit is contained in:
Modus Create
2018-10-10 17:04:33 -04:00
committed by Mike Hartington
parent a9b30646fe
commit 73cff0c61a
36 changed files with 9914 additions and 0 deletions

View File

@ -0,0 +1,9 @@
import Vue from 'vue'
describe('Router node', () => {
it('Sets globals correctly', () => {
window.Vue = undefined
global.Vue = Vue
require('../src/router.js')
})
})