thedesk/src/views/App.vue

30 lines
616 B
Vue
Raw Normal View History

2019-04-05 16:50:07 +09:00
<template>
<div id="app">
2019-04-07 06:43:55 +09:00
<img alt="Vue logo" src="@/assets/logo.png">
2019-04-08 05:47:07 +09:00
<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,
},
})
export default class App extends Vue {}
2019-04-05 16:50:07 +09:00
</script>
<style>
#app {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>