- Vue.js 2 Web Development Projects
- Guillaume Chau
- 72字
- 2021-07-02 22:34:29
The note toolbar with extras inside
Some features are still missing from our app, such as deleting or renaming the selected note. We will add these in a new toolbar, just above the note text editor. Go ahead and create a new p element with the toolbar class ;inside the main section:
<!-- Main pane --> <section class="main"> <p class="toolbar"> <!-- Our toolbar is here! --> </p> <textarea v-model="selectedNote.content"></textarea> </p>
We will add three new features in this toolbar:
- Renaming the note
- Deleting the note
- Marking the note as favorite
推薦閱讀
- Apache ZooKeeper Essentials
- Building a Game with Unity and Blender
- Bootstrap Essentials
- Xamarin.Forms Projects
- PHP+MySQL+Dreamweaver動態網站開發實例教程
- Keras深度學習實戰
- NetBeans IDE 8 Cookbook
- Visual Foxpro 9.0數據庫程序設計教程
- HoloLens與混合現實開發
- 人工智能算法(卷1):基礎算法
- Arduino電子設計實戰指南:零基礎篇
- JavaScript Concurrency
- 軟件測試項目實戰之功能測試篇
- Learning Java Lambdas
- Python編程從新手到高手