Vue.js

某课网

心已入冬 提交于 2021-01-04 04:05:27
百度网盘下载 第1章 准备工作 介绍了 Flow、Vue.js 的源码目录设计、Vue.js 的源码构建方式,以及从入口开始分析了 Vue.js 的初始化过程。 1-1 课程简介 1-2 准备工作 1-3 认识 Flow-文档 1-4 认识 Flow 1-5 Vue.js 源码目录设计-文档 1-6 Vue.js 源码目录设计 1-7 Vue.js 源码构建-文档 1-8 Vue.js 源码构建 1-9 从入口开始-文档 1-10 从入口开始 第2章 数据驱动 详细讲解了模板数据到 DOM 渲染的过程,从 new Vue 开始,分析了 mount、render、update、patch 等流程。 2-1 数据驱动-文档 2-2 数据驱动 2-3 new Vue 发生了什么-文档 2-4 new Vue 发生了什么 2-5 Vue 实例挂载的实现-文档 2-6 Vue 实例挂载的实现 2-7 render-文档 2-8 render 2-9 Virtual DOM-文档 2-10 Virtual DOM 2-11 createElement-文档 2-12 createElement 2-13 update-文档 2-14 update 第3章 组件化 分析了组件化的实现原理,并且分析了组件周边的原理实现,包括合并配置、生命周期、组件注册、异步组件。 3-1 组件化-文档 3-2

Java教程(一)---JDK和Maven安装配置

落爺英雄遲暮 提交于 2021-01-03 12:52:50
安装配置Java环境 下载地址 Java 8u271 根据自己的电脑下载 可以查看我的电脑属性 可以看移步这个 安装配置教程 也可以看这里的 打开exe安装包 这里可以更改路径 然后安装即可 如果有jre(有的安装包不带)那就选择相同路径即可 没有就不用管 安装就好 选择你要安装的路径即可安装 验证安装 打开控制台 winodws下可以 win+r 输入 java 安装成功 如果安装完成却验证失败 手动配置环境变量 找到java安装地址 新建系统环境变量 然后找到path (环境变量) 新建 %JAVA_HOME%\bin 安装Maven 下载Maven 下载地址 maven 下载后解压 然后在Path中 新增一个 输入%MAVEN_HOME%\bin 验证安装 打开控制台 winodws下可以 win+r 输入mvn -v 如果显示以下信息就是安装完成 后续会推出 每个平台的详细搭建过程 前端:js入门 vue入门 vue开发小程序 等 后端: java入门 springboot入门等 服务器:mysql入门 服务器简单指令 云服务器运行项目 python:推荐 不温卜火 一定要看哦 一些插件的使用等 大学之道亦在自身,努力学习,热血青春 如果对编程感兴趣可以加入我们的qq群一起交流:974178910 有问题可以下方留言,看到了会回复哦 来源: oschina 链接:

love-system SSM爱心捐赠管理系统

泄露秘密 提交于 2021-01-03 10:45:40
love-system SSM爱心捐赠管理系统 本系统为个人当初所写,现免费上传供下载,整体使用了SSM架构,Shiro来控制权限。后期如果有时间,打算使用Spring Boot和Vue重构,毕竟前后端分离已经是大势所趋。 源码地址: https://gitee.com/southwind0/love-system 1.技术选型 - IDEA - JDK8 - MySQL - Shiro - Spring - Spring MVC - MyBatis - Bootstrap - jQuery 2.使用教程 1. 将resource目录下的数据库.txt中SQL语句导入Mysql数据库 2. 将源码导入IDEA,直接配置Tomcat启动即可 3.图片展示 1.系统采用shiro进行权限管理,目前有2个用户,chenyue为admin用户,test为普通用户 2.其他功能展示 来源: oschina 链接: https://my.oschina.net/u/4399511/blog/4874146

Vue学习官网和Vue的书籍 目录结构

谁说我不能喝 提交于 2021-01-03 07:47:11
Vue基础知识学习网站【中文】 https://cn.vuejs.org/v2/guide/ Vue路由知识学习网站【中文】 https://router.vuejs.org/zh/guide/ Vuex更为复杂的Vue知识学习网站【中文】 https://vuex.vuejs.org/zh/ Vue脚手架搭建和使用学习网站【中文】 https://cli.vuejs.org/zh/guide/ Vue自学可以参考的博客,博客中有demo https://www.cnblogs.com/keepfool/p/5657065.html https://www.xiuyuan.info/?p=115 https://www.cnblogs.com/keepfool/p/5619070.html https://www.cnblogs.com/wisewrong/p/6277262.html 第1章 Vue.js简介 1.1 Vue.js是什么 1 1.2 为什么要用Vue.js 2 1.3 Vue.js的Hello world 2 第2章 基础特性 2.1 实例及选项 5 2.1.1 模板 6 2.1.2 数据 7 2.1.3 方法 9 2.1.4 生命周期 10 2.2 数据绑定 12 2.2.1 数据绑定语法 13 2.2.2 计算属性 17 2.2.3 表单控件 18 2.2.4

vue: how to make the object passed to component reactive?

烈酒焚心 提交于 2021-01-03 07:42:27
问题 Codepen Demo I have a component which has an location object as props . The argument I passed in is locations[index] which is a selected item from a locations array. However, the component cannot react when the index change. As you can see in the demo, the JSON change as you click the button, but the component cannot update. What's the best way to make the component reactive? 回答1: Your location component populates the province and city data properties in the mounted hook only. When the

vue: how to make the object passed to component reactive?

限于喜欢 提交于 2021-01-03 07:41:53
问题 Codepen Demo I have a component which has an location object as props . The argument I passed in is locations[index] which is a selected item from a locations array. However, the component cannot react when the index change. As you can see in the demo, the JSON change as you click the button, but the component cannot update. What's the best way to make the component reactive? 回答1: Your location component populates the province and city data properties in the mounted hook only. When the

vue: how to make the object passed to component reactive?

时光怂恿深爱的人放手 提交于 2021-01-03 07:41:48
问题 Codepen Demo I have a component which has an location object as props . The argument I passed in is locations[index] which is a selected item from a locations array. However, the component cannot react when the index change. As you can see in the demo, the JSON change as you click the button, but the component cannot update. What's the best way to make the component reactive? 回答1: Your location component populates the province and city data properties in the mounted hook only. When the

vue: how to make the object passed to component reactive?

眉间皱痕 提交于 2021-01-03 07:41:46
问题 Codepen Demo I have a component which has an location object as props . The argument I passed in is locations[index] which is a selected item from a locations array. However, the component cannot react when the index change. As you can see in the demo, the JSON change as you click the button, but the component cannot update. What's the best way to make the component reactive? 回答1: Your location component populates the province and city data properties in the mounted hook only. When the

Problem with placing v-app-bar content in container?

丶灬走出姿态 提交于 2021-01-03 07:10:33
问题 I need to place content inside v-app-bar inside container, so It goes in one line with other page content. All content inside app should have max width for each breakpoint instead of full page width. Placing all content iside container don't solve problem. I marked with red box on screenshot where content should be. 回答1: Hey I am having the same issue. I came up with a rough work around, my question is here incase you found an answer as well. Make vuetify app bar items align with <v-container

Problem with placing v-app-bar content in container?

跟風遠走 提交于 2021-01-03 07:09:52
问题 I need to place content inside v-app-bar inside container, so It goes in one line with other page content. All content inside app should have max width for each breakpoint instead of full page width. Placing all content iside container don't solve problem. I marked with red box on screenshot where content should be. 回答1: Hey I am having the same issue. I came up with a rough work around, my question is here incase you found an answer as well. Make vuetify app bar items align with <v-container