s6e94 stuff with templates

This commit is contained in:
Tyrel Souza 2018-04-16 23:23:58 -04:00
parent 1f786d3e39
commit d97482e4d7
No known key found for this signature in database
GPG Key ID: 5A9394D4C30AEAC0
2 changed files with 7 additions and 2 deletions

View File

@ -1,12 +1,17 @@
<template>
<div id="app">
Hello World
Server status {{status}}
</div>
</template>
<script>
export default {
data: function(){
return {
status: 'critical'
};
}
}
</script>

View File

@ -4,4 +4,4 @@ import App from './App.vue'
new Vue({
el: '#app',
render: h => h(App)
})
});