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> <template>
<div id="app"> <div id="app">
Hello World Server status {{status}}
</div> </div>
</template> </template>
<script> <script>
export default { export default {
data: function(){
return {
status: 'critical'
};
}
} }
</script> </script>

View File

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