Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

started vuejs documentation #88

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions vuejs/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# The Vuejs Short Explanation

### A Breif Introduction To Vuejs
Empty file added vuejs/src/0_0_example.rb
Empty file.
Binary file added vuejs/static/images/favicon.ico
Binary file not shown.
Binary file added vuejs/static/images/rails.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
44 changes: 44 additions & 0 deletions vuejs/txt/0_introduction.mdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# 0
### Introduction To Vue.js

# Vue.js
![Vuejs LoGo](../static/images/favicon.ico)

__Vue.js is a rapidly growing front-end framework for JavaScript , inspired by Angular.js, React.js,
and Rivets.js that offers simplistic user-interface design, manipulation, and reactivity.__

__It is described as a framework, which is based on the
concept of two-way binding data to components and views. It is incredibly fast, exceeding speeds
of other top-tier JS frameworks, and very user friendly for easy integration and prototyping.__

## Examples

### To start using Vue.js, make sure you have the script file included in your HTML. For example, add the following to your HTML.

```
<script src="https://unpkg.com/vue@next"></script>
```

## HTML File
```
<div id="app">
{{ message }}
</div>
```
## Javascript
```new Vue({
el: '#app',
data: {
message: 'Hello Vue.js!'
}
})
```

You might also want to check out the ["Hello World" Example made by Vue.js.](https://v3.vuejs.org/guide/introduction.html#getting-started)

## You Can Also Install Vuejs Through NPM (Node Package Manager)

```
$ npm install vue@next
```

Empty file added vuejs/txt/1_vuecli_intro.mdown
Empty file.
Empty file added vuejs/txt/2_components.mdown
Empty file.
Empty file added vuejs/txt/3_vue_router.mdown
Empty file.