1. node_modules
pnpm 安装的第三方依赖
2. public
公共资源,存放网页图标等
3. src
开发代码存放位置
3.1 项目入口文件 main.ts
import { createApp } from 'vue' // 引入vue
import './style.css' // 引入默认样式
import App from './App.vue' // 引入页面 App.Vue
createApp(App).mount('#app') // 创建一个Vue应用实例,并挂载到id为app的DOM节点上(在index.html中定义)
3.2 Vue页面组件 App.vue
标准的Vue组件,由TypeScript脚本、html页面、css样式三部分构成。
<!-- TypeScript脚本 -->
<script setup lang="ts">
import HelloWorld from './components/HelloWorld.vue'
</script>
<!-- html页面 -->
<template>
<div>
<a href="https://vitejs.dev" target="_blank">
<img src="/vite.svg" class="logo" alt="Vite logo" />
</a>
<a href="https://vuejs.org/" target="_blank">
<img src="./assets/vue.svg" class="logo vue" alt="Vue logo" />
</a>
</div>
<HelloWorld msg="Vite + Vue" />
</template>
<!-- css样式 -->
<style scoped>
.logo {
height: 6em;
padding: 1.5em;
will-change: filter;
transition: filter 300ms;
}
.logo:hover {
filter: drop-shadow(0 0 2em #646cffaa);
}
.logo.vue:hover {
filter: drop-shadow(0 0 2em #42b883aa);
}
</style>
3.3 DOM页面 index.html
定义主网页,在body中定义id为app的DOM节点,用于挂载main.ts中创建的Vue实例。
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + Vue + TS</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
标签:02,Vue,App,默认,filter,vue,import,页面
From: https://www.cnblogs.com/zp1207/p/18453231