- Vue.js 2 Web Development Projects
- Guillaume Chau
- 65字
- 2021-07-02 22:34:27
The note list
We will now lay the groundwork for the side pane containing the list of notes:
- Add a new aside element with the side-bar class before the main section:
<!-- Notebook app --> <p id="notebook"> <!-- Sidebar --> <aside class="side-bar"> <!-- Here will be the note list --> </aside> <!-- Main pane --> <section class="main"> ...
- Add a new data property called notes--it will be the array containing all of our notes:
data () { return { content: ... // New! A note array notes: [], } },
推薦閱讀
- Learning Microsoft Windows Server 2012 Dynamic Access Control
- 程序員面試筆試寶典(第3版)
- ReSharper Essentials
- Go語言高效編程:原理、可觀測性與優化
- 我的第一本算法書
- Oracle 12c中文版數據庫管理、應用與開發實踐教程 (清華電腦學堂)
- Java持續交付
- 快速念咒:MySQL入門指南與進階實戰
- Hands-On Functional Programming with TypeScript
- 數據結構案例教程(C/C++版)
- Arduino家居安全系統構建實戰
- Node.js:來一打 C++ 擴展
- Test-Driven Machine Learning
- 從零開始學C#
- 基于SpringBoot實現:Java分布式中間件開發入門與實戰