Skip to content

Commit 95eea43

Browse files
Suggestions
1 parent 901ff82 commit 95eea43

9 files changed

+19
-21
lines changed

docs/Vue.js/ComponentBased.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
---
2-
id: Vue.js Component Based
2+
id: vue.js-Component-Based
33
title: Component-Based in Vue.Js
44
sidebar_label: Component-Based in Vue.Js
55
sidebar_position: 3
66
tags: [Vue.js,JavaScript,Vue.js Introduction,Component-Based,Framework,Vue.Js Concepts]
77
description: Vue.Js Component-Based.
88
---
9-
10-
# Component-Based in Vue.Js
9+
1110

1211
Component-based architecture is a fundamental concept in Vue.js (and many other modern JavaScript frameworks) that promotes building applications by breaking them down into reusable, self-contained components. Each component encapsulates a piece of UI, including its HTML structure, CSS styles, and JavaScript logic, making it easier to manage and maintain complex applications.
1312

docs/Vue.js/ComputedPropertiesAndWatchers.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
---
2-
id: Vue.js Computed Properties and Watchers
2+
id: vue.js-computed-properties-and-watchers
33
title: Computed Properties and Watchers in Vue.Js
44
sidebar_label: Computed Properties and Watchers in Vue.Js
55
sidebar_position: 6
66
tags: [Vue.js,JavaScript,Vue.js Introduction,Computed Properties and Watchers,Framework,Vue.Js Concepts]
77
description: Vue.Js Computed Properties and Watchers.
8-
---
9-
# Computed properties and watchers
8+
---
109

1110
Computed properties and watchers are advanced features in Vue.js that allow you to perform reactive computations and respond to changes in data. They are crucial for handling complex logic and maintaining the reactivity of your application.
1211

docs/Vue.js/DeclarativeRendering.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
2-
id: Vue.js Declarative Rendering
2+
id: vue.js-declarative-rendering
33
title: Declarative Rendering in Vue.Js
44
sidebar_label: Declarative Rendering in Vue.Js
55
sidebar_position: 2
66
tags: [Vue.js,JavaScript,Vue.js Introduction,Declarative Rendering,Framework,Vue.Js Concepts]
77
description: Vue.Js Declarative Rendering.
88
---
99

10-
# Declarative Rendering
10+
## Declarative Rendering
1111
Declarative rendering is a core concept in Vue.js that simplifies how you specify what you want to display in your web application's user interface (UI). Instead of manually manipulating the DOM (Document Object Model) to update the UI based on changes in data, Vue.js allows you to declare what should be rendered based on the current state of your data.
1212

1313
### Example 1: Basic Data Binding

docs/Vue.js/Directives.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
2-
id: Vue.js Directives
2+
id: vue.js-Directives
33
title: Directives in Vue.Js
44
sidebar_label: Directives in Vue.Js
55
sidebar_position: 5
66
tags: [Vue.js,JavaScript,Vue.js Introduction,Directives,Framework,Vue.Js Concepts]
77
description: Vue.Js Directives.
88
---
99

10-
# Directives
10+
## Directives
1111

1212
Directives in Vue.js are special attributes prefixed with `v-`, which are used to add dynamic behavior to HTML elements or components. They are fundamental building blocks of Vue.js applications and provide declarative syntax to manipulate the DOM, handle events, conditionally render elements, and more.
1313

docs/Vue.js/Routing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
2-
id: Vue.js Routing
2+
id: vue.js-routing
33
title: Routing in Vue.Js
44
sidebar_label: Routing in Vue.Js
55
sidebar_position: 7
66
tags: [Vue.js,JavaScript,Vue.js Introduction,Routing,Framework,Vue.Js Concepts]
77
description: Vue.Js Routing.
88
---
99

10-
# Routing
10+
## Routing
1111

1212
Routing in Vue.js refers to the mechanism of navigating between different pages or views in a single-page application (SPA) without a full page reload. Vue Router is the official routing library for Vue.js, providing a seamless way to manage application state and handle navigation.
1313

docs/Vue.js/StateManagement.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
2-
id: Vue.js state management
2+
id: vue.js-state-management
33
title: state managementin Vue.Js
44
sidebar_label: state management in Vue.Js
55
sidebar_position: 8
66
tags: [Vue.js,JavaScript,Vue.js Introduction,state management,Framework,Vue.Js Concepts]
77
description: Vue.Js state management.
88
---
99

10-
# state management
10+
## state management
1111

1212
state management in Vue.js in a comprehensive manner. State management is a critical aspect of building complex applications, ensuring that data is managed efficiently and consistently throughout the application's lifecycle. In Vue.js, there are several approaches to managing state, each suited to different scales and requirements of applications.
1313

docs/Vue.js/TransitionAndAnimation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
id: Vue.js Transition and animation
2+
id: vue.js-transition-and-animation
33
title: Transition and animation in Vue.Js
44
sidebar_label: Transition and animation
55
sidebar_position: 9
66
tags: [Vue.js,JavaScript,Vue.js Introduction,Transition and animation,Framework]
77
description: Transition and animation in Vue.Js
88
---
9-
# Transition and animation
9+
## Transition and animation
1010

1111
Transition and animation are powerful tools in web development that enhance user experience by adding visual cues and smooth interactions to web applications. In the context of Vue.js, transitions and animations can be seamlessly integrated into components using Vue's built-in features and CSS animations.
1212

docs/Vue.js/Two-WayDataBinding.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
id: Vue.js Two-Way Data Binding
2+
id: vue.js-two-way-data-binding
33
title: Two-Way Data Binding in Vue.Js
44
sidebar_label: Two-Way Data Binding in Vue.Js
55
sidebar_position: 4
66
tags: [Vue.js,JavaScript,Vue.js Introduction,Two-Way Data Binding,Framework,Vue.Js Concepts]
77
description: Vue.Js Two-Way Data Binding.
88
---
9-
# Two-way data binding
9+
## Two-way data binding
1010

1111
Two-way data binding is a feature in Vue.js (and other frameworks like Angular) that establishes a synchronization between the model (data) and the view (UI). It allows changes in the UI to affect the underlying data and vice versa, without needing explicit event listeners or manual DOM manipulation.
1212

docs/Vue.js/whatIsVue.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
2-
id: Vue.js Introduction
3-
title: Classes and Inheritance in TypeScript
2+
id: vue.js-introduction
3+
title: Vue.js Introduction
44
sidebar_label: Introduction
55
sidebar_position: 1
66
tags: [Vue.js,JavaScript,Vue.js Introduction,Framework]
77
description: What is Vue.Js and Fundamentals.
88
---
99

10-
# What is Vue.Js
10+
## What is Vue.Js
1111
Vue.js is a progressive JavaScript framework used for building user interfaces. It is designed to be incrementally adoptable, meaning you can integrate it into existing projects without having to rewrite the whole application. Vue.js is often compared to other front-end frameworks like React and Angular, but it distinguishes itself with its simplicity and ease of integration.
1212

1313
## Key features of Vue.js include:

0 commit comments

Comments
 (0)