Nuxt/examples/plugins-vendor/pages/index.vue

29 lines
492 B
Vue
Raw Normal View History

2016-11-08 01:57:55 +00:00
<template>
<div>
<p><button @click="showLoginError">Notif me!</button></p>
2016-11-08 01:57:55 +00:00
<p>Home - <router-link to="/about">About</router-link></p>
</div>
</template>
<script>
let miniToastr
if (process.BROWSER) {
miniToastr = require('mini-toastr')
}
export default {
mounted () {
if (process.BROWSER) {
miniToastr.init()
}
},
notifications: {
showLoginError: {
title: 'Welcome!',
message: 'Hello from nuxt.js',
type: 'info'
}
}
}
2016-11-08 01:57:55 +00:00
</script>