mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
11 lines
164 B
Vue
11 lines
164 B
Vue
<template>
|
|
<h1>hi</h1>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
|
|
export default defineComponent({
|
|
name: 'Index'
|
|
});
|
|
</script>
|