thedesk/src/views/App.vue

30 lines
557 B
Vue
Raw Normal View History

2019-04-05 16:50:07 +09:00
<template>
<div id="app">
2019-04-22 18:39:16 +09:00
<img alt="Vue logo" src="@/assets/logo.png">
<Welcome/>
2019-04-05 16:50:07 +09:00
</div>
</template>
2019-04-08 05:47:07 +09:00
<script lang="ts">
2019-04-22 18:39:16 +09:00
import { Component, Vue } from 'vue-property-decorator'
import Welcome from '@/components/Welcome.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-10 04:10:24 +09:00
Welcome,
2019-04-08 05:47:07 +09:00
},
})
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>