
vue 入门笔记
nicepainkiller
念念不忘 必有回响
展开
-
vuex properties of undefined (reading ‘getters‘)
properties of undefined (reading 'getters')原创 2024-08-09 18:33:31 · 712 阅读 · 0 评论 -
vue 入门笔记 Vue 实例的生命周期
vue 实例的生命周期每个 Vue 实例 在被创建时都要经过一系列的初始化过程——例如,需要设置数据监听(el)、编译模板、将实例挂载到 DOM 并在数据变化时更新 DOM 等。同时在这个过程中也会运行一些叫做生命周期钩子的函数,(系统预留函数)这给了用户在不同阶段添加自己...原创 2019-02-20 11:32:32 · 233 阅读 · 0 评论 -
vue 入门笔记 Vue 自定义指令
Vue 自定义指令index.html<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title> &原创 2019-02-20 14:03:42 · 227 阅读 · 0 评论 -
vue 入门笔记 09 组件 01_全局组件&局部组件
组件01 全局组件&局部组件index.html<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title>原创 2019-02-20 16:14:43 · 197 阅读 · 0 评论 -
vue 入门笔记 10 组件之间的通信_props
组件之间的通信_propscomponent 组件实例作用域 是孤立的。这意味着不能(不应该)在组件模板类直接使用,只能通过 props 方法传递 属性组件通信 props子组件 使用 父组件 数据 (单向)可以理解为 只读 不可写入 子组件 p...原创 2019-02-20 17:30:02 · 206 阅读 · 0 评论 -
vue 入门笔记 11 组件通信 定义事件
组件通信 事件自定义组件中 porops 属于单向数据流 只读components:{ props: []}需要实现 双向数据流,但是可以利用 引用类型数据特性 做双向数据流 A. 子组件 和 子组件 之间的通信: $o...原创 2019-02-20 18:21:08 · 242 阅读 · 0 评论 -
Vue2.x全家桶点餐项目 小结二
小结二Vuex 是什么:Vuex 是一个专门为 Vue.js 应用程序开发的 状态管理模式npm install vuex --save创建 store.js (如果创建 index.js 引用时可以 引用到目录就可以了 ) ...原创 2019-03-02 11:52:48 · 368 阅读 · 0 评论 -
Vue 全局变量/方法
代码 a.jsexports.install = function (Vue, options) { Vue.prototype.test= function () { console.log('执行成功') }};main.js代码如下import commonFun from 'a.js'Vue.use(commonFun)然后任何...原创 2019-03-20 20:00:36 · 317 阅读 · 0 评论 -
vue Ico .svg 图标生成 字体图标
vue Ico 图标的生成https://icomoon.io/#iconssvg 图标生成 字体图标原创 2019-03-17 16:35:17 · 451 阅读 · 0 评论 -
Reset CSS 重置浏览器的 样式
Reset 重置浏览器的 样式,不同的浏览器有自己的默认样式,想要得到 统一的表现,就需要重置浏览器的样式https://meyerweb.com/eric/tools/css/reset/index.html/* http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 License: none (publ...原创 2019-03-17 17:28:58 · 235 阅读 · 0 评论 -
vue 入门笔记 08 模板语法_表单空间数据绑定
模板语法_表单空间数据绑定index.html<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title> </原创 2019-02-19 21:06:39 · 232 阅读 · 0 评论 -
vue 入门笔记 07 模板语法_事件处理
模板语法_事件处理index.html<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title> <原创 2019-02-19 20:40:13 · 189 阅读 · 0 评论 -
vue 入门笔记 01
vue 入门笔记 实例化vue对象 index.html<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title>Vue.js</title&am原创 2019-02-16 17:47:11 · 225 阅读 · 1 评论 -
vue 入门笔记 02
vue 入门笔记 Vue数据和方法 index.html<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title>Vue.js</title&原创 2019-02-16 18:22:14 · 206 阅读 · 0 评论 -
vue 入门笔记 18 Vue-loader
Vue-loaderVue-loader: 1, Vue-loader 是一个 webpack 的 loader 2, Vue 项目是 基于 webpack 搭建 ...原创 2019-02-22 15:04:57 · 529 阅读 · 0 评论 -
vue 入门笔记 03 模板语法_插值
new Vue({ el:"选择器" 规定vue 实体的 作用范围 data:{ }});原创 2019-02-18 11:29:45 · 219 阅读 · 0 评论 -
vue 入门笔记 04 模板语法_指令
模板语法_指令 index.html <!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title>原创 2019-02-18 14:35:08 · 184 阅读 · 0 评论 -
vue 入门笔记 04 模板语法_计算属性
模板语法_计算属性index.html<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title> <原创 2019-02-18 16:40:03 · 150 阅读 · 0 评论 -
vue 入门笔记 05 Vue_Class和Style绑定
Vue_Class和Style绑定index.html <!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title> &原创 2019-02-18 18:11:05 · 243 阅读 · 0 评论 -
vue 入门笔记 05 模板语法_条件渲染
模板语法_条件渲染index.html<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title> &am原创 2019-02-18 19:45:58 · 211 阅读 · 0 评论 -
vue 入门笔记 06 模板语法_列表渲染
模板语法_列表渲染index.html <!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title> &am原创 2019-02-19 19:41:07 · 194 阅读 · 0 评论 -
vue 入门笔记 12 Vue 过度动画
<transition v-on:before-enter="beforeEnter" v-on:enter="enter" v-on:after-enter="afterEnter" v-on:enter-cancelled="enterCancelled" v-on:before-leave="beforeLeave" v-on:leave="leave"原创 2019-02-21 16:22:23 · 338 阅读 · 0 评论