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