2022-10-28 00:14:20 +00:00
|
|
|
<template>
|
2022-10-28 00:28:03 +00:00
|
|
|
<img alt="Vue logo" src="./assets/logo.png" />
|
|
|
|
<HelloWorld msg="Welcome to Your Vue.js + TypeScript App" />
|
|
|
|
<CalendarBild />
|
|
|
|
<CalendarBild />
|
2022-10-28 00:14:20 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2022-10-28 00:28:03 +00:00
|
|
|
import { Options, Vue } from "vue-class-component";
|
|
|
|
import HelloWorld from "./components/HelloWorld.vue";
|
|
|
|
import CalendarBild from "./components/CalendarBild.vue";
|
2022-10-28 00:14:20 +00:00
|
|
|
|
|
|
|
@Options({
|
|
|
|
components: {
|
|
|
|
HelloWorld,
|
2022-10-28 00:28:03 +00:00
|
|
|
CalendarBild,
|
2022-10-28 00:14:20 +00:00
|
|
|
},
|
|
|
|
})
|
|
|
|
export default class App extends Vue {}
|
|
|
|
</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>
|