- 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: [], } },
推薦閱讀
- Getting Started with React
- C語言程序設計(第3版)
- 動手玩轉Scratch3.0編程:人工智能科創教育指南
- R Deep Learning Cookbook
- Oracle GoldenGate 12c Implementer's Guide
- Java Web應用開發給力起飛
- Fastdata Processing with Spark
- 計算機應用技能實訓教程
- Android嵌入式系統程序開發(基于Cortex-A8)
- 體驗之道:從需求到實踐的用戶體驗實戰
- Python趣味創意編程
- Mastering R for Quantitative Finance
- 威脅建模:設計和交付更安全的軟件
- Clojure High Performance Programming
- Java無難事:詳解Java編程核心思想與技術