mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
41 lines
701 B
Vue
41 lines
701 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) // eslint-disable-line no-console
|
|
}
|
|
}
|
|
</script>
|