This is the repo for Vue 2. For Vue 3, go to https://github.com/vuejs/core
|
|
пре 11 година | |
|---|---|---|
| dist | пре 11 година | |
| examples | пре 12 година | |
| src | пре 11 година | |
| tasks | пре 12 година | |
| test | пре 11 година | |
| .gitignore | пре 12 година | |
| .jshintrc | пре 12 година | |
| .npmignore | пре 12 година | |
| .travis.yml | пре 12 година | |
| CONTRIBUTING.md | пре 12 година | |
| Gruntfile.js | пре 12 година | |
| LICENSE | пре 12 година | |
| README.md | пре 12 година | |
| bower.json | пре 11 година | |
| component.json | пре 11 година | |
| package.json | пре 11 година |
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