mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
e7cc2757c3
Co-authored-by: Alexander Lichter <manniL@gmx.net>
48 lines
748 B
Vue
48 lines
748 B
Vue
<template>
|
|
<div>
|
|
<input v-model="msg">
|
|
<p>msg: {{ msg }}</p>
|
|
<p>env: {{ env }}</p>
|
|
<p>computed msg: {{ computedMsg }}</p>
|
|
<button @click="greet">
|
|
Greet
|
|
</button>
|
|
<p>
|
|
<NuxtLink to="/about">
|
|
About page
|
|
</NuxtLink>
|
|
</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Vue from 'vue'
|
|
import Component from 'nuxt-class-component'
|
|
|
|
export default
|
|
@Component({
|
|
props: {
|
|
env: String
|
|
}
|
|
})
|
|
class Base extends Vue {
|
|
// initial data
|
|
msg = 123
|
|
|
|
// lifecycle hook
|
|
mounted () {
|
|
this.greet()
|
|
}
|
|
|
|
// computed
|
|
get computedMsg () {
|
|
return 'computed ' + this.msg
|
|
}
|
|
|
|
// method
|
|
greet () {
|
|
console.log('base greeting: ' + this.msg) // eslint-disable-line no-console
|
|
}
|
|
}
|
|
</script>
|