line-and-surface/app/src/App.vue

29 lines
438 B
Vue
Raw Normal View History

2021-01-09 17:38:35 +01:00
<template>
2021-01-09 20:36:20 +01:00
<SVGContent id="root" url="content/intro.svg"/>
2021-01-09 17:38:35 +01:00
</template>
<script lang="ts">
import {defineComponent} from "vue";
import SVGContent from "@/components/SVGContent.vue";
import "normalize.css";
export default defineComponent({
name: "App",
components: {
SVGContent
}
});
</script>
<style>
html, body {
overflow: hidden;
}
html, body, #app, #root {
width: 100%;
height: 100%;
cursor: default;
}
</style>