在Vite-Vue应用程序中,我实现了index.html和vue组件/视图的样式,但浏览器将它们显示为被划掉。我在组件/视图中添加的许多=样式也被划掉了。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vite App</title>
<style>
body {
min-height: auto;
color: black;
background: white;
transition: none;
line-height: normal;
font-family: 'Arial', sans-serif;
font-size: 16px;
text-rendering: auto;
-webkit-font-smoothing: subpixel-antialiased;
-moz-osx-font-smoothing: auto;
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>
如何删除这些不需要的样式并停止在 Vite-Vue 应用程序中修改我的样式?