mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 05:18:11 +00:00
16 lines
253 B
Vue
16 lines
253 B
Vue
<template>
|
|
<div class="home">Hello Vue!</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { Vue, Component } from "vue-property-decorator";
|
|
|
|
@Component
|
|
export default class Home extends Vue {
|
|
mounted() {}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
</style>
|