serene11c's recent timeline updates
serene11c

serene11c

V2EX member #338731, joined on 2018-08-05 23:22:53 +08:00
serene11c's recent replies
Feb 28, 2022
Replied to a topic by Wzieee 程序员 有上过培训班的老哥么,请教下。
b 站尚硅谷先找视频学段时间,看看自己到底喜不喜欢、能不能坚持学下去、有没有天赋再考虑接下来的事吧
3 吧,再找找
@anonymous1024 别的配色还有吧,也可以去实体店看看
戈登的 ag1pro
Apr 17, 2021
Replied to a topic by sdysyhj 职场话题 读研还是去华为 OD
这个研究生是全日制还是非全
@cssTheGreatest
拉勾上有职位,你可以去看看
Mar 30, 2021
Replied to a topic by FaceBug 酷工作 [上海][前端]传统行业,不加班, 15K
能远程面就好了,想回上海
Mar 22, 2021
Replied to a topic by jeesk Vue.js 使用 v-for 动态渲染表单无效 ?
动态组件 https://cn.vuejs.org/v2/guide/components.html#%E5%8A%A8%E6%80%81%E7%BB%84%E4%BB%B6
```html
<body>
<div id="app">
<div v-for="item in array" :key="item.id">
<component v-if="item.component" :is="item.component"></component>
<span v-else>{{ item.content }}</span>
</div>
</div>

<script>
Vue.component("tab-home", {
template: "<div>Home component</div>"
});
Vue.component("tab-posts", {
template: "<div>Posts component</div>"
});

new Vue({
el: "#app",
data() {
return {
array: [
{ id: 1, content: "test" },
{ id: 2, component: "tab-home" },
{ id: 3, component: "tab-posts" }
]
};
}
});
</script>
</body>
```
About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   1310 Online   Highest 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 14ms · UTC 17:16 · PVG 01:16 · LAX 10:16 · JFK 13:16
♥ Do have faith in what you're doing.