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

43 lines
627 B
Vue
Raw Normal View History

2016-11-08 01:57:55 +00:00
<template>
2016-11-08 02:48:18 +00:00
<div class="container">
<p>
<button @click="showLoginError">
Notif me!
</button>
</p>
<p>
Home - <NuxtLink to="/about">
About
</NuxtLink>
</p>
2016-11-08 01:57:55 +00:00
</div>
</template>
<script>
let miniToastr
if (process.client) {
miniToastr = require('mini-toastr')
}
export default {
2017-10-31 13:43:55 +00:00
mounted() {
2016-11-24 00:46:20 +00:00
miniToastr.init()
},
notifications: {
showLoginError: {
title: 'Welcome!',
message: 'Hello from nuxt.js',
type: 'info'
}
}
}
2016-11-08 01:57:55 +00:00
</script>
2016-11-08 02:48:18 +00:00
<style>
.container {
text-align: center;
padding-top: 100px;
font-family: sans-serif;
}
</style>