登录注册的前端重提交
Change-Id: I30dec474fa4a6159ce0d785f3d8e20cbcbeb0465
diff --git a/src/App.vue b/src/App.vue
new file mode 100644
index 0000000..cfa631b
--- /dev/null
+++ b/src/App.vue
@@ -0,0 +1,36 @@
+<template>
+ <div id="app">
+ <router-view />
+ </div>
+</template>
+
+<script>
+export default {
+ name: 'App'
+}
+</script>
+
+<style>
+#app {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ margin: 0;
+ padding: 0;
+ height: 100vh;
+ width: 100%;
+}
+
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+}
+
+body {
+ margin: 0;
+ padding: 0;
+ height: 100vh;
+ overflow-x: hidden;
+}
+</style>