feat: Add Vue3 exercises and interview plan

- Introduced Vue3 exercises covering composable API, reactivity, lifecycle hooks, and built-in components.
- Added structured interview plan for frontend candidates focusing on HTML, CSS, JavaScript, TypeScript, and Vue.
- Included starter files for each exercise and detailed README documentation for guidance.
This commit is contained in:
charlie
2026-03-24 23:02:58 +08:00
parent 3435848495
commit d0d8be443b
41 changed files with 1551 additions and 5 deletions

View File

@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>before 系列生命周期和 expose</title>
<style>
body { margin: 0; padding: 32px; font-family: "PingFang SC", sans-serif; background: #f6f8fc; }
.panel { max-width: 760px; margin: 0 auto; padding: 24px; border-radius: 18px; background: #fff; border: 1px solid #dde5f2; }
button, input { padding: 12px 14px; border-radius: 12px; font: inherit; }
input { width: 100%; border: 1px solid #ccd7e9; margin-top: 12px; }
button { border: 0; background: #2d6cdf; color: #fff; cursor: pointer; margin-right: 10px; }
</style>
</head>
<body>
<section id="app" class="panel">
<button type="button" @click="focusChildInput">聚焦子组件输入框</button>
<button type="button" @click="showChild = !showChild">切换子组件显示</button>
<child-panel v-if="showChild" ref="childPanel"></child-panel>
</section>
<script src="https://cdn.jsdelivr.net/npm/vue@3/dist/vue.global.js"></script>
<script src="./starter.js"></script>
</body>
</html>