learnin-some-vue/vue-cli/src/ServerStatus.vue

23 lines
332 B
Vue
Raw Permalink Normal View History

2018-04-17 03:48:33 +00:00
<template>
<div>
<p>Server Status: {{ status }}</p>
<hr>
<button @click="changeStatus">Change</button>
</div>
</template>
<script>
export default {
data(){
return {
status: 'critical'
}
},
methods: {
changeStatus(){
this.status = 'Normal'
}
}
}
</script>