- 博客(3)
- 收藏
- 关注
原创 Vue学习笔记03
一. 通过 .vue文件生成 template、script(js)、css(style)框架,有高亮、提示等,方便书写和管理 <template> <div>Foo</div> </template> <script> export default { }; </script> <style> </style> 但是在html中 通过<script src="./foo.vue">&
2021-06-30 20:07:49 39
原创 Vue学习笔记02
一、Vue中的options const vm = new Vue(options) options的五类属性: 1)数据:data、 props、 propsData、 computed、methods、 Watch 2)DOM: el、 template、 render、 renderError 3)生命周期钩子: beforeCreate、 created、beforeMount、 mounted、 beforeUpdate、 updated、 activated、 deactivated、 bef
2021-03-05 20:10:43 114 1
原创 Vue学习笔记01
Vue学习笔记01 一个刚学vue的小渣渣路过,仅为笔记,有任何错误的地方欢迎大家指正~~ 一、引入vue.js模块 1)通过CDN脚本引入资源,缺点:每一次需要远程引入cdn地址,不方便 <script>http://cdn.jsdelivr.net/npm/vue/dist/vue.js</script> 2)通过node_modules。npm init - y先触发项目,再通过npm i vue -S引入vue包 <script src=./node_modules
2021-03-01 16:32:02 95 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人