为App.vue添加了#app根元素

This commit is contained in:
carry 2025-02-15 17:30:40 +08:00
parent c2e1462a28
commit 2e2fbed768

View File

@ -3,7 +3,9 @@ import { RouterView } from 'vue-router'
</script> </script>
<template> <template>
<RouterView /> <div id="app">
<RouterView />
</div>
</template> </template>
<style scoped> <style scoped>