43 lines
455 B
Plaintext
43 lines
455 B
Plaintext
前端阶段:
|
||
|
||
1:html,css,js,jq
|
||
|
||
2:m(model)v(view)c(controller)
|
||
|
||
http://www.xxx.com/index
|
||
|
||
Nodejs
|
||
|
||
3:m(model)v(view) vm (view and model)
|
||
|
||
Angular.js React.js Vue.js ( 尤雨溪 )
|
||
|
||
https://cn.vuejs.org/
|
||
|
||
vue 2.x
|
||
基于原生js开发
|
||
|
||
option api 80%
|
||
new Vue({
|
||
data: {}
|
||
})
|
||
|
||
vue clas api 5%
|
||
class Home extends Vue {
|
||
|
||
}
|
||
|
||
|
||
|
||
|
||
Vue 3.x (vue next) typescript
|
||
|
||
Composition API 15%
|
||
setup() {
|
||
|
||
}
|
||
|
||
|
||
生命周期
|
||
|