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

43 lines
633 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').default
}
export default {
mounted () {
2016-11-24 00:46:20 +00:00
miniToastr.init()
},
notifications: {
showLoginError: {
title: 'Welcome!',
2020-11-30 22:44:04 +00:00
message: 'Hello from nuxt',
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>