thedesk/src/views/App.vue

30 lines
620 B
Vue
Raw Normal View History

2019-04-05 16:50:07 +09:00
<template>
<div id="app">
2019-04-10 00:26:04 +09:00
<img alt="Vue logo" src="@/assets/logo.png" />
<HelloWorld msg="Welcome to Your Vue.js + TypeScript App" />
2019-04-05 16:50:07 +09:00
</div>
</template>
2019-04-08 05:47:07 +09:00
<script lang="ts">
import { Component, Vue } from 'vue-property-decorator';
import HelloWorld from '@/components/HelloWorld.vue';
2019-04-05 16:50:07 +09:00
2019-04-08 05:47:07 +09:00
@Component({
2019-04-05 16:50:07 +09:00
components: {
2019-04-08 05:47:07 +09:00
HelloWorld,
},
})
2019-04-10 00:26:04 +09:00
export default class App extends Vue { }
2019-04-05 16:50:07 +09:00
</script>
<style>
#app {
2019-04-10 00:26:04 +09:00
font-family: "Avenir", Helvetica, Arial, sans-serif;
2019-04-05 16:50:07 +09:00
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>