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

31 lines
491 B
Vue

<template>
<SVGContent id="root" url="intro.svg"/>
</template>
<script lang="ts">
import {defineComponent} from "vue";
import SVGContent from "@/components/SVGContent.vue";
import "normalize.css";
import ZoomPan from "@/components/ZoomPan.vue";
export default defineComponent({
name: "App",
components: {
ZoomPan,
SVGContent
}
});
</script>
<style>
html, body {
overflow: hidden;
}
html, body, #app, #root {
width: 100%;
height: 100%;
cursor: default;
}
</style>