fluentd-ui/app/javascript/app.vue
Kenji Okimoto 27ddd77120
Run bin/rails webpacker:install && bin/rails webpacker:install:vue
Signed-off-by: Kenji Okimoto <okimoto@clear-code.com>
2018-05-15 14:51:17 +09:00

23 lines
257 B
Vue

<template>
<div id="app">
<p>{{ message }}</p>
</div>
</template>
<script>
export default {
data: function () {
return {
message: "Hello Vue!"
}
}
}
</script>
<style scoped>
p {
font-size: 2em;
text-align: center;
}
</style>