- 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.
30 lines
1.1 KiB
HTML
30 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>nextTick 和组件 v-model</title>
|
|
<style>
|
|
body { margin: 0; padding: 32px; font-family: "PingFang SC", sans-serif; background: #f4f7fb; }
|
|
.panel { max-width: 760px; margin: 0 auto; padding: 24px; border-radius: 18px; background: #fff; border: 1px solid #d9e4f1; }
|
|
input, button { padding: 12px 14px; border-radius: 12px; font: inherit; }
|
|
input { width: 100%; border: 1px solid #cad6e8; }
|
|
button { border: 0; background: #2d6cdf; color: #fff; cursor: pointer; margin-bottom: 16px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<section id="app" class="panel">
|
|
<button type="button" @click="toggleSearch">展开搜索区</button>
|
|
|
|
<div v-if="showSearch">
|
|
<search-input ref="searchBox" v-model="keyword"></search-input>
|
|
</div>
|
|
|
|
<p>当前关键字:{{ keyword }}</p>
|
|
</section>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/vue@3/dist/vue.global.js"></script>
|
|
<script src="./starter.js"></script>
|
|
</body>
|
|
</html>
|