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.
yudao/front-end/mall4v/src/App.vue

19 lines
865 B

<template>
<!-- 使用Element Plus的配置提供者组件来包裹应用的主要内容 -->
<el-config-provider namespace="el">
<!-- 路由视图组件它是Vue Router的一部分用于渲染与当前路由匹配的组件 -->
<router-view />
</el-config-provider>
</template>
<!--
下面的样式部分使用SCSS预处理器并且引入了一个全局样式文件
注意这里的注释指出了一个ESLint规则被禁用这可能是为了允许在scoped样式中使用特定的style类型`lang="scss"`
-->
<!-- eslint-disable-next-line vue-scoped-css/enforce-style-type -->
<style lang="scss">
// 使用@use语句导入SCSS文件这里导入的是项目中的app.scss文件
// 它可能包含了一些全局样式、变量或mixin这些将应用于整个应用程序。
@use '@/assets/app.scss';
</style>