vue.js 10

<html>
<head>
<title>
test10
</title>
</head>

<body>
<div id="app">
<ul>
<li v-for="todo in todos" v-if="todo.when!='tommorow'">
{{todo.when}} {{todo.what}}
</li>
</ul>
</div>

<script src="https://cdn.jsdelivr.net/npm/vue"></script>

<script>
new Vue({
el:'#app',
data:{
todos:[
{when:'today',
what:'study'},
{when:'tommorow',
what:'balling'},
{when:'week',
what:'sleeping'}
]
}
})
</script>
</body>
</html>

댓글

이 블로그의 인기 게시물

[c#] DataTable을 dataGridView에 바인딩

[React] index.html 수정하기

[React] 프로젝트 생성