haoxuan
2023-10-11 a1a6630f2eabfc78a379b5808b1bf7231a084d0b
src/App.vue
@@ -4,12 +4,33 @@
    <router-view />
  </div>
</template>
<script>
import util from "@/libs/util";
export default {
  name: "app",
  watch: {
    // "$i18n.locale": "i18nHandle"
  },
  created() {
    // this.i18nHandle(this.$i18n.locale);
  },
  methods: {
    // i18nHandle(val, oldVal) {
    //   util.cookies.set("lang", val);
    //   document.querySelector("html").setAttribute("lang", val);
    // }
  }
};
</script>
<style lang="scss">
#app,
html,
body {
  width: 100%;
  height: 100%;
  overflow:hidden;
  margin:0;
}
</style>