mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-06 03:57:56 +08:00
21 lines
227 B
Vue
21 lines
227 B
Vue
<template>
|
|
<router-view></router-view>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
export default {
|
|
name: 'App',
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
html,
|
|
body,
|
|
#app {
|
|
padding: 0;
|
|
margin: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|