mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
41 lines
670 B
Vue
41 lines
670 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><nuxt-link to="/about">About page</nuxt-link></p>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import Vue from 'vue'
|
||
|
import Component from 'nuxt-class-component'
|
||
|
|
||
|
@Component({
|
||
|
props: {
|
||
|
env: String
|
||
|
}
|
||
|
})
|
||
|
export default 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)
|
||
|
}
|
||
|
}
|
||
|
</script>
|