You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ECOM/superMarket-frontend/src/App.vue

17 lines
376 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<template>
<!-- 定义Vue组件的模板部分 -->
<div id="app">
<!-- 定义一个根div容器id为app -->
<router-view/>
<!-- 路由占位符用于渲染匹配的路由组件 -->
</div>
</template>
<style>
/* 定义样式部分 */
body,html {
/* 设置body和html元素的样式 */
overflow-x: hidden;
/* 禁止页面横向滚动 */
}
</style>