Vue3 #3
2021/9/11 23:05:02
本文主要是介绍Vue3 #3,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1.v-for:
<ul> <li v-for="book in books"> <h3>{{ book.title }} - {{ book.author }} - {{ book.age }}</h3> </li> </ul>
javascript:
data() { return { books: [ { title: 'wind of name', author: 'The Net Tom', age: '45' }, { title: 'Rain of name', author: 'The Net Peter', age: '42' }, { title: 'Wound of name', author: 'The Net Mike', age: '40' } ] } }
2.v-bind:
<a :href="url">the best website</a>
javascript:
data() { return { url: 'http://www.google.com/' } }
小案例:
<ul> <li v-for="book in books"> <img :src="book.img" :alt="book.title"> <h3>{{ book.title }} - {{ book.author }} - {{ book.age }}</h3> </li> </ul>
javascript:
data() { return { books: [ { title: 'wind of name', author: 'The Net Tom', age: '45', img: 'assets/1.jpg' }, { title: 'Rain of name', author: 'The Net Peter', age: '42', img: 'assets/2.jpg' }, { title: 'Wound of name', author: 'The Net Mike', age: '40', img: 'assets/3.jpg' }, ] } }
这篇关于Vue3 #3的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-15useCallback教程:React Hook入门与实践
- 2024-11-15React中使用useContext开发:初学者指南
- 2024-11-15拖拽排序js案例详解:新手入门教程
- 2024-11-15React中的自定义Hooks案例详解
- 2024-11-14受控组件项目实战:从零开始打造你的第一个React项目
- 2024-11-14React中useEffect开发入门教程
- 2024-11-14React中的useMemo教程:从入门到实践
- 2024-11-14useReducer开发入门教程:轻松掌握React中的useReducer
- 2024-11-14useRef开发入门教程:轻松掌握React中的useRef用法
- 2024-11-14useState开发:React中的状态管理入门教程