vue-*: Update based on changes to vue

This commit is contained in:
Andy Hanson
2017-10-18 11:22:07 -07:00
parent 499998cbaa
commit 6436c101b0
5 changed files with 6 additions and 7 deletions
+1 -2
View File
@@ -3,8 +3,7 @@
// Definitions by: Kombu <https://github.com/aicest>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
import * as Vue from 'vue';
import { PluginFunction } from 'vue';
import Vue, { PluginFunction } from 'vue';
declare namespace VueI18n {
type Path = string;
+1 -1
View File
@@ -3,4 +3,4 @@
"dependencies": {
"vue": "^2.2.6"
}
}
}
+2 -1
View File
@@ -2,7 +2,8 @@
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
"es6",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
+1 -2
View File
@@ -3,9 +3,8 @@
const assert = console.assert;
const random = () => Math.trunc(Math.exp(Math.log(Date.now()) * Math.random()));
import * as Vue from 'vue';
import Vue, { ComponentOptions } from 'vue';
import * as VueI18n from 'vue-i18n';
import { ComponentOptions } from 'vue';
/**
* VueI18n.install
+1 -1
View File
@@ -1,4 +1,4 @@
import * as Vue from "vue";
import Vue from "vue";
import * as VueScrollTo from "vue-scrollto";
Vue.use(VueScrollTo);