This is the repo for Vue 2. For Vue 3, go to https://github.com/vuejs/core
|
|
%!s(int64=11) %!d(string=hai) anos | |
|---|---|---|
| dist | %!s(int64=11) %!d(string=hai) anos | |
| examples | %!s(int64=12) %!d(string=hai) anos | |
| src | %!s(int64=11) %!d(string=hai) anos | |
| tasks | %!s(int64=12) %!d(string=hai) anos | |
| test | %!s(int64=11) %!d(string=hai) anos | |
| .gitignore | %!s(int64=12) %!d(string=hai) anos | |
| .jshintrc | %!s(int64=12) %!d(string=hai) anos | |
| .npmignore | %!s(int64=12) %!d(string=hai) anos | |
| .travis.yml | %!s(int64=12) %!d(string=hai) anos | |
| CONTRIBUTING.md | %!s(int64=12) %!d(string=hai) anos | |
| Gruntfile.js | %!s(int64=12) %!d(string=hai) anos | |
| LICENSE | %!s(int64=12) %!d(string=hai) anos | |
| README.md | %!s(int64=12) %!d(string=hai) anos | |
| bower.json | %!s(int64=11) %!d(string=hai) anos | |
| component.json | %!s(int64=11) %!d(string=hai) anos | |
| package.json | %!s(int64=11) %!d(string=hai) anos |
MVVM made simple.
Vue.js is a library for building interactive web interfaces. It provides the benefits of MVVM data binding and a composable component system with a simple and flexible API. You should try it out if you like:
It's really really easy to get started. Seriously, it's so easy:
<div id="demo">
{{message}}
<input v-model="message">
</div>
var demo = new Vue({
el: '#demo',
data: {
message: 'Hello Vue.js!'
}
})
To check out the live demo, guides and API reference, visit vuejs.org.
Vue.js supports most ECMAScript 5 compliant browsers, essentially IE9+. IE8 and below are not supported.
Read the contributing guide.
See details changes for each version in the release notes.
Copyright (c) 2014 Evan You