Skip to content

Commit

Permalink
docs: 📝 removed 3 lessons
Browse files Browse the repository at this point in the history
  • Loading branch information
MooseSaeed committed Aug 6, 2024
1 parent 581ff51 commit 0904b02
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
8 changes: 0 additions & 8 deletions src/guide/essentials/component-basics.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@
# Components Basics {#components-basics}

<div class="composition-api">
<VueSchoolLink href="https://vueschool.io/courses/vue-component-fundamentals-with-the-composition-api" title="Watch a Free Component Fundamentals Video Course on Vue School"/>
</div>

<div class="options-api">
<VueSchoolLink href="https://vueschool.io/courses/vue-js-3-components-fundamentals" title="Watch a Free Component Fundamentals Video Course on Vue School"/>
</div>

Components allow us to split the UI into independent and reusable pieces, and think about each piece in isolation. It's common for an app to be organized into a tree of nested components:

![Component Tree](./images/components.png)
Expand Down
4 changes: 0 additions & 4 deletions src/guide/essentials/template-refs.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
# Template Refs {#template-refs}

<div class="composition-api">
<VueSchoolLink href="https://vueschool.io/lessons/typing-template-refs" title="Free Vue.js Template Refs with TypeScript Lesson"/>
</div>

While Vue's declarative rendering model abstracts away most of the direct DOM operations for you, there may still be cases where we need direct access to the underlying DOM elements. To achieve this, we can use the special `ref` attribute:

```vue-html
Expand Down

0 comments on commit 0904b02

Please sign in to comment.