serene11c 最近的时间轴更新
serene11c

serene11c

V2EX 第 338731 号会员,加入于 2018-08-05 23:22:53 +08:00
serene11c 最近回复了
2022-02-28 08:57:35 +08:00
回复了 Wzieee 创建的主题 程序员 有上过培训班的老哥么,请教下。
b 站尚硅谷先找视频学段时间,看看自己到底喜不喜欢、能不能坚持学下去、有没有天赋再考虑接下来的事吧
3 吧,再找找
2021-04-20 14:41:59 +08:00
回复了 anonymous1024 创建的主题 广州 有什么篮球群可以参加吗?另外国产球鞋求推荐
@anonymous1024 别的配色还有吧,也可以去实体店看看
2021-04-20 09:41:50 +08:00
回复了 anonymous1024 创建的主题 广州 有什么篮球群可以参加吗?另外国产球鞋求推荐
戈登的 ag1pro
2021-04-17 23:38:27 +08:00
回复了 sdysyhj 创建的主题 职场话题 读研还是去华为 OD
这个研究生是全日制还是非全
2021-04-06 15:42:45 +08:00
回复了 yudun1989 创建的主题 酷工作 [北京][哇唧唧哇]哇唧唧哇招聘后端开发工程师( Python )
@cssTheGreatest
拉勾上有职位,你可以去看看
2021-03-30 10:34:08 +08:00
回复了 FaceBug 创建的主题 酷工作 [上海][前端]传统行业,不加班, 15K
能远程面就好了,想回上海
2021-03-22 09:53:25 +08:00
回复了 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>
```
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   5592 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 90ms · UTC 06:34 · PVG 14:34 · LAX 23:34 · JFK 02:34
Developed with CodeLauncher
♥ Do have faith in what you're doing.