- 新增基础 Vue 项目结构,包含 App.vue 和 HelloWorld 组件 - 配置 Vite 作为构建工具,添加 package.json 和 package-lock.json - 创建入口文件 main.js,初始化 Vue 应用并挂载 - 添加 index.html 作为项目的入口页面 - 更新 .gitignore,忽略 node_modules 和 .vscode 目录 - 添加 enlish-vue.iml 模块配置文件支持集成开发环境
14 lines
357 B
HTML
14 lines
357 B
HTML
<!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>enlish-vue</title>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
</html>
|