2020-11-20 18:43:30 +00:00
|
|
|
<template>
|
2020-11-20 21:47:56 +00:00
|
|
|
<img alt="Vue logo" src="./assets/logo.png">
|
|
|
|
<HelloWorld msg="Welcome to Your Vue.js + TypeScript App"/>
|
2020-11-20 18:43:30 +00:00
|
|
|
</template>
|
|
|
|
|
2020-11-20 21:47:56 +00:00
|
|
|
<script lang="ts">
|
|
|
|
import { Options, Vue } from 'vue-class-component';
|
|
|
|
import HelloWorld from './components/HelloWorld.vue';
|
2020-11-20 18:43:30 +00:00
|
|
|
|
2020-11-20 21:47:56 +00:00
|
|
|
@Options({
|
2020-11-20 18:43:30 +00:00
|
|
|
components: {
|
2020-11-20 21:47:56 +00:00
|
|
|
HelloWorld,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
export default class App extends Vue {}
|
2020-11-20 18:43:30 +00:00
|
|
|
</script>
|
|
|
|
|
2020-11-20 21:47:56 +00:00
|
|
|
<style lang="scss">
|
|
|
|
#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;
|
|
|
|
}
|
2020-11-20 18:43:30 +00:00
|
|
|
</style>
|