From 7e138eb7065cb73676479a16a8a97d0c150fa109 Mon Sep 17 00:00:00 2001 From: ytbryan Date: Sat, 3 Dec 2016 20:52:40 +0800 Subject: [PATCH] added VueRouter.version --- dist/vue-router.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dist/vue-router.js b/dist/vue-router.js index a4614e4d9..2c0d987c6 100644 --- a/dist/vue-router.js +++ b/dist/vue-router.js @@ -2056,7 +2056,8 @@ function createHref (base, fullPath, mode) { return base ? cleanPath(base + '/' + path) : path } -VueRouter.install = install +VueRouter.install = install; +VueRouter.version = 'v2.1.1'; if (inBrowser && window.Vue) { window.Vue.use(VueRouter) @@ -2064,4 +2065,4 @@ if (inBrowser && window.Vue) { return VueRouter; -}))); \ No newline at end of file +})));