- 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: [], } },
推薦閱讀
- Embedded Linux Projects Using Yocto Project Cookbook
- Web程序設計及應用
- TypeScript入門與實戰
- C/C++算法從菜鳥到達人
- 基于Java技術的Web應用開發
- 編寫高質量代碼:改善C程序代碼的125個建議
- 零基礎學MQL:基于EA的自動化交易編程
- Unity 5.x By Example
- Learning Python by Building Games
- Python數據分析從0到1
- 劍指大數據:企業級數據倉庫項目實戰(在線教育版)
- Java面向對象程序設計
- C#程序設計(項目教學版)
- Spring+Spring MVC+MyBatis從零開始學
- Scala Functional Programming Patterns