Skip to content
Update Documentation authored by Felix Cervin's avatar Felix Cervin
...@@ -77,7 +77,7 @@ Vue.Logger('info', 'This is some information.') ...@@ -77,7 +77,7 @@ Vue.Logger('info', 'This is some information.')
**Examples:** **Examples:**
```javascript ```javascript
Vue.app.emit('error', 'Here\'s an error notification.') Vue.app.emit('error', 'Here\'s an error notification.')
Vue.app.emit('info', 'Here'\s an information notification.') Vue.app.emit('info', 'Here\'s an information notification.')
``` ```
*If you want to only log to console, just use `console.log`* *If you want to only log to console, just use `console.log`*
You can find the following code in `~/layouts/default.vue`: You can find the following code in `~/layouts/default.vue`:
... ...
......