diff --git a/lib/app/client.js b/lib/app/client.js index 224315c80..c938cd6ab 100644 --- a/lib/app/client.js +++ b/lib/app/client.js @@ -24,7 +24,6 @@ function loadAsyncComponents (to, ___, next) { if (typeof Component === 'function' && !Component.options) { return new Promise(function (resolve, reject) { const _resolve = (Component) => { - // console.log('Component loaded', Component, match.path, key) if (!Component.options) { Component = Vue.extend(Component) // fix issue #6 Component._Ctor = Component @@ -61,7 +60,6 @@ function render (to, from, next) { this.error({ statusCode: 404, message: 'This page could not be found.', url: to.path }) return next() } - // console.log('Load components', Components, to.path) // Update ._data and other properties if hot reloaded Components.forEach(function (Component) { if (!Component._data) {