Socket
Socket
Sign inDemoInstall

@nuxt/vue-app

Package Overview
Dependencies
Maintainers
3
Versions
67
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nuxt/vue-app - npm Package Compare versions

Comparing version 2.3.2 to 2.3.3

LICENSE

14

CHANGELOG.md

@@ -6,4 +6,18 @@ # Change Log

## [2.3.3](https://github.com/nuxt/nuxt.js/compare/v2.3.2...v2.3.3) (2018-11-26)
### Bug Fixes
* router Expected "0" to be defined ([#4394](https://github.com/nuxt/nuxt.js/issues/4394)) ([54d2737](https://github.com/nuxt/nuxt.js/commit/54d2737))
* **progress-bar:** allow 0 for values and remove duplicate defaults ([#4397](https://github.com/nuxt/nuxt.js/issues/4397)) ([8030ca1](https://github.com/nuxt/nuxt.js/commit/8030ca1))
* **scrollBehavior:** emit triggerScroll event after changing layer ([#4399](https://github.com/nuxt/nuxt.js/issues/4399)) ([0c6c69b](https://github.com/nuxt/nuxt.js/commit/0c6c69b)), closes [#4080](https://github.com/nuxt/nuxt.js/issues/4080)
* **server, vue-app:** allow unicode page names ([#4402](https://github.com/nuxt/nuxt.js/issues/4402)) ([d187793](https://github.com/nuxt/nuxt.js/commit/d187793))
## [2.3.2](https://github.com/nuxt/nuxt.js/compare/v2.3.1...v2.3.2) (2018-11-20)
**Note:** Version bump only for package @nuxt/vue-app

4

package.json
{
"name": "@nuxt/vue-app",
"version": "2.3.2",
"version": "2.3.3",
"repository": "nuxt/nuxt.js",

@@ -14,3 +14,3 @@ "license": "MIT",

},
"gitHead": "6b4a5db7f69bc82099a667be78330b9114e9cb22"
"gitHead": "2e90166f2a87271dedaf7072c2f7d9457bff5d34"
}

@@ -37,2 +37,10 @@ import Vue from 'vue'

mode: '<%= layoutTransition.mode %>'
},
on: {
beforeEnter(el) {
// Ensure to trigger scroll event after calling scrollBehavior
window.<%= globals.nuxt %>.$nextTick(() => {
window.<%= globals.nuxt %>.$emit('triggerScroll')
})
}
}

@@ -39,0 +47,0 @@ }, [ templateEl ])

@@ -245,3 +245,3 @@ import Vue from 'vue'

}
return (path || '/') + window.location.search + window.location.hash
return decodeURI(path || '/') + window.location.search + window.location.hash
}

@@ -438,3 +438,3 @@

const value = data[token.name]
const value = data[token.name || 'pathMatch']
let segment

@@ -441,0 +441,0 @@

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc