vue3 js 学习笔记
Vue3-js 学习笔记
目录
- Vue3-js 学习笔记
- 目录
- 前言
- reactive 数据绑定
- 事件绑定
- 生命函数周期
- 计算属性-computed
- props
- emit-自定义事件
- ref-获取元素及子组件
- watch
- vue3-组件通信
- v-slot-插槽
- reactive-ref-区别
- watchEffect-监听值变化
前言
优秀的教程
reactive 数据绑定
<template>
<div class="app">
<h1>{{ state.name }}</h1>
</div>
</template>
<script>
import { reactive } from "vue";
export default {
name: "App",
setup() {
const state = reactive({
name: "朱大常"
});
return { state };
}
};
</script>
事件绑定
<template>
<div class="app">
<h1>{{ state.name }}</h1>
<button type="button" @click="login">按钮</button>
</div>
</template>
<script>
import { reactive } from "vue";
export default {
name: "App",
setup() {
// 数据定义
const state = reactive({
name: "朱大常"
});
// 事件定义
const login = () => {
state.name = "朱大常001";
};
return { state, login };
}
};
</script>
生命函数周期
onMounted
<template>
<div class="app"></div>
</template>
<script>
import { onMounted } from "vue";
export default {
name: "App",
setup() {
// 组件加载
onMounted(() => {
console.log("组件已挂载");
});
}
};
</script>
计算属性-computed
computed (只要监听的那个数据改变,就会重新计算)
<template>
<div class="app">
<h1>{{ state.name }}</h1>
<h2>岁数:{{ state.age }}</h2>
<h3>计算后的属性:{{ state.setComputed }}</h3>
<input type="text" v-model="state.username" />
<button type="button" @click="login">按钮</button>
</div>
</template>
<script>
import { reactive, computed } from "vue";
export default {
name: "App",
setup() {
// 数据定义
const state = reactive({
name: "朱大常",
username: "",
age: 18,
setComputed: computed(() => state.age + 2)
});
// 事件定义
const login = () => {
state.name = state.username;
};
setTimeout(() => {
state.age = 19;
}, 2000);
return { state, login };
}
};
</script>
props
- 备注:适用于同步传值,不是异步的,不是双向绑定的
<!-- 子组件 -->
<template>
<h1>子组件:{{ title }}</h1>
</template>
<script>
import { onMounted } from "vue";
export default {
name: "test",
props: {
title: {
type: String,
default: ""
}
},
setup(props) {
onMounted(() => {
console.log("----组件加载完成-props值为", props.title);
});
}
};
</script>
<!-- 父组件 -->
<template>
<div class="app">
<!-- 出现警告信息是 :title和 自己 定义的一样 -->
<test :title="state.title"></test>
</div>
</template>
<script>
import { reactive } from "vue";
import test from "./components/test";
export default {
name: "App",
components: {
test
},
setup(props) {
// 数据定义
const state = reactive({
title: "朱大常"
});
return { state };
}
};
</script>
emit-自定义事件
emit 传值-注意这里的事件生命使用小写加-
<!-- 子组件 -->
<template>
<button type="button" @click="handleClick">emit按钮</button>
</template>
<script>
import { onMounted } from "vue";
export default {
name: "test",
setup({ emit }) {
const handleClick = () => {
emit("my-event", "hello");
};
return { handleClick };
}
};
</script>
<!-- 父组件 -->
<template>
<div class="app">
<test @my-event="parentClick"></test>
</div>
</template>
<script>
import { reactive } from "vue";
import test from "./components/test";
export default {
name: "App",
components: {
test
},
setup(props) {
// 数据定义
const state = reactive({
name: "朱大常"
});
const parentClick = (e) => {
console.log(e);
};
return { parentClick };
}
};
</script>
ref-获取元素及子组件
ref 注意-相比 vue2.x 有很大的改变--ref 和 reactive 差别-ref 线
<!-- 子组件 -->
<template>
<div></div>
</template>
<script>
import { ref } from "vue";
export default {
name: "test",
setup() {
// 1. 定义响应式的数据
const count = ref(1);
// 2. 定义方法
const refsgh = () => {
console.log("-----k");
};
return { count, refsgh };
}
};
</script>
<!-- 父组件 -->
<template>
<div class="app">
<test ref="comRef"></test>
<button @click="clickClid001">获取子组成数据</button>
<button @click="clickClid002">调用子组件方法</button>
</div>
</template>
<script>
import { ref } from "vue";
import test from "./components/test";
export default {
name: "App",
components: {
test
},
setup() {
// 1. 创建一个组件的 ref 引用 一定要 return ️!!!!!!!!!!!!!!
const comRef = ref(null);
// 2. 获取子组成的值
const clickClid001 = () => {
console.log(comRef.value.count);
};
// 3. 调用子组件的方法
const clickClid002 = () => {
comRef.value.refsgh();
};
// comRef 必须在return 抛出
return { comRef, clickClid001, clickClid002 };
}
};
</script>
watch
<template>
<div class="app">
<button @click="watch001">watch方法</button>
<!-- 这里.value可以省略 -->
<h4>ref值:{{ nameref }}</h4>
</div>
</template>
<script>
import { watch } from "vue";
export default {
name: "App",
setup() {
const nameref = ref("朱大常");
watch(nameref, (newValue, oldValue) => {
// 输出
console.log(newValue, oldValue);
});
const watch001 = () => {
nameref.value = "张德帅";
};
return {
watch001,
nameref
};
}
};
</script>
vue3-组件通信
父组件获取子组件数据和调用子组件方法
- props-破软丝 (传值)
- ref-瑞府 (调用子组件的方法)
<!-- 子组件 -->
<template>
<h1>{{ title }}</h1>
</template>
<script>
import { ref } from "vue";
export default {
name: "menus",
props: {
title: {
type: String,
default: "menus"
}
},
setup() {
// 1. 定义响应式的数据
const count = ref(1);
// 2. 定义方法
const clidFun = () => {
console.log("-----k");
};
return { count, clidFun };
}
};
</script>
<!-- 父组件 -->
<template>
<div class="app">
<menus ref="menusRef" :title="state.title"></menus>
<button @click="clickClid001">ref获取子组件数据</button>
<button @click="clickClid002">ref调用子组件方法</button>
</div>
</template>
<script>
import { ref, reactive } from "vue";
import menus from "./components/menus";
export default {
name: "App",
components: {
menus
},
setup() {
const state = reactive({
title: "张德帅"
});
// 1. 创建一个组件的 ref 引用
const menusRef = ref(null);
// 2. 获取子组成的值
const clickClid001 = () => {
console.log(menusRef.value.count);
};
// 3. 调用子组件的方法
const clickClid002 = () => {
menusRef.value.clidFun();
};
return { state, menusRef, clickClid001, clickClid002 };
}
};
</script>
子组件通信父组件
- props
- emit
<!-- 子组件 -->
<template>
<h1>{{ title }}</h1>
<button type="button" @click="getPropsState">props获取父组件数据</button
><br />
<button type="button" @click="getEmitState">emit调用父组件方法</button>
<br />
<button type="button" @click="parentClik">$parent调用父组件方法</button>
</template>
<script>
export default {
name: "test001",
props: {
title: {
type: String,
default: ""
},
appFun: {
type: Function,
default: () => {}
}
},
setup(props, { emit }) {
// 1.props获取父组件数据
const getPropsState = () => {
props.appFun();
};
// 2.emit调用父组件方法
const getEmitState = () => {
emit("my-even");
};
return { getPropsState, getEmitState };
}
};
</script>
<style lang="scss" scoped></style>
<!-- 父组件 -->
<template>
<div>
<h1>子组件</h1>
<test01 :title="state.title" :appFun="appFun" @my-even="clidFun"></test01>
</div>
</template>
<script>
import { reactive } from "vue";
import test01 from "./components/test001";
export default {
name: "App",
components: {
test01
},
setup() {
const state = reactive({
title: "子组件"
});
// props 方法
const appFun = () => {
console.log("--------P");
};
// emit 自定义事件
const clidFun = () => {
console.log("父组件方法被调用");
};
return { state, appFun, clidFun };
}
};
</script>
<style lang="scss" scoped></style>
v-slot-插槽
<!-- 子组件 -->
<template>
<div class="HeadNav-main">
<!-- 默认插槽 -->
<slot>
<!-- slot内为后备内容 -->
<h3>没传内容</h3>
</slot>
<!--具名插槽-->
<slot name="header"> </slot>
<!--作用域插槽-->
<slot name="footer"> </slot>
</div>
</template>
<!-- 父组件 -->
<template>
<child>
<!--默认插槽-->
<template v-slot>
<div>默认插槽</div>
</template>
<!--具名插槽-->
<template #header>
<div>具名插槽</div>
</template>
<!--作用域插槽-->
<template #footer="slotProps">
<div>
{{slotProps.testProps}}
</div>
</template>
<child>
</template>
reactive-ref-区别
reactive-ref-取值区别proxy
const state = reactive({
name:"asd",
formDataInput:{
name:"asd",
age:12
}
})
const parm = Object.assign({}, state.formDataInput);
const a1 = { ...state.formDataInput };
watchEffect-监听值变化
- 值发生变化,执行这个函数
const state = ref();
watchEffect(() => {
state.value = props.details;
});
vue3 js 学习笔记的更多相关文章
- js学习笔记:webpack基础入门(一)
之前听说过webpack,今天想正式的接触一下,先跟着webpack的官方用户指南走: 在这里有: 如何安装webpack 如何使用webpack 如何使用loader 如何使用webpack的开发者 ...
- Vue.js学习笔记(2)vue-router
vue中vue-router的使用:
- JS 学习笔记--9---变量-作用域-内存相关
JS 中变量和其它语言中变量最大的区别就是,JS 是松散型语言,决定了它只是在某一个特定时间保存某一特定的值的一个名字而已.由于在定义变量的时候不需要显示规定必须保存某种类型的值,故变量的值以及保存的 ...
- WebGL three.js学习笔记 使用粒子系统模拟时空隧道(虫洞)
WebGL three.js学习笔记 使用粒子系统模拟时空隧道 本例的运行结果如图: 时空隧道demo演示 Demo地址:https://nsytsqdtn.github.io/demo/sprite ...
- WebGL three.js学习笔记 法向量网格材质MeshNormalMaterial的介绍和创建360度全景天空盒的方法
WebGL学习----Three.js学习笔记(5) 点击查看demo演示 Demo地址:https://nsytsqdtn.github.io/demo/360/360 简单网格材质 MeshNor ...
- WebGL three.js学习笔记 创建three.js代码的基本框架
WebGL学习----Three.js学习笔记(1) webgl介绍 WebGL是一种3D绘图协议,它把JavaScript和OpenGL ES 2.0结合在一起,通过增加OpenGL ES 2.0的 ...
- vue.js 学习笔记3——TypeScript
目录 vue.js 学习笔记3--TypeScript 工具 基础类型 数组 元组 枚举 字面量 接口 类类型 类类型要素 函数 函数参数 this对象和类型 重载 迭代器 Symbol.iterat ...
- 2019-4-29 js学习笔记
js学习笔记一:js数据类型 1:基本数据类型 number类型(整数,小数) String类型 boolean类型 NaN类型其实是一个nu ...
- 一点感悟:《Node.js学习笔记》star数突破1000+
写作背景 笔者前年开始撰写的<Node.js学习笔记> github star 数突破了1000,算是个里程碑吧. 从第一次提交(2016.11.03)到现在,1年半过去了.突然有些感慨, ...
- JS学习笔记5_DOM
1.DOM节点的常用属性(所有节点都支持) nodeType:元素1,属性2,文本3 nodeName:元素标签名的大写形式 nodeValue:元素节点为null,文本节点为文本内容,属性节点为属性 ...
随机推荐
- Sentry For Vue 完整接入详解(2021 Sentry v21.8.x)前方高能预警!三万字,慎入!
内容源于:https://docs.sentry.io/platforms/javascript/guides/vue/ 系列 1 分钟快速使用 Docker 上手最新版 Sentry-CLI - 创 ...
- rcc of stm32
1. G0 2. F0 / F1 / F3 F0 F1 F3 3. F2/F4 F205 f429 f7
- GPL前世今生
从事Linux开发的朋友一定都听过GPL,那么到底什么是GPL呢?他有什么作用呢?本文给大家做详细讲解. 一.GNU/GPL 在讲解GPL之前,我们必须先了解什么是GNU? 1. 什么是GNU GNU ...
- 什么是AOP,以及在Springboot中自定义AOP
AOP (Aspect Oriented Programming)一般译为面向切面编程 Aspect [ˈæspekt] n.方面;层面;(动词的)体那么AOP 面相切面编程具体是指什么,它和之前的O ...
- React 18 自定义 Hook 获取 useState 最新值
原理:通过同步更新 useRef 来获取最新值 // util.ts export const useRefState = (init: any = null) => { const [sta ...
- 移动端100vh的问题与解决方案
之所以100vh在移动端出现问题,原因大致如上图,真搞不懂,为什么总是有反人类的设计出现. 经过多方参考,实测有效的方案如下: <style> :root { --vh: 1vh; } & ...
- Angular Material 18+ 高级教程 – CDK Accessibility の ListKeyManager
介绍 ListKeyManager 的作用是让我们通过 keyboard 去操作 List Items. 一个典型的例子:Menu 有 4 个步骤: tab to menu enter 打开 menu ...
- .NET常见的几种项目架构模式,你知道几种?(附带使用情况投票)
前言 项目架构模式在软件开发中扮演着至关重要的角色,它们为开发者提供了一套组织和管理代码的指导原则,以提高软件的可维护性.可扩展性.可重用性和可测试性. 假如你有其他的项目架构模式推荐,欢迎在文末留言 ...
- SuperMap iServer数据动态更新刷新地图与数据服务
更新:2022年6月27日 SuperMap iServer 11i 底层修改逻辑,增加智能指针.11i版本不需要以下操作即可实现 一.使用背景 有这么一个需求,后端也就通过SuperMap iDes ...
- LNMP 和 LAMP 对比 (仅供参考)
Nginx 性能稳定.功能丰富.运维简单.处理静态文件速度快且消耗系统资源极少. Apache 是 LAMP 架构最核心的 Web Server,开源.稳定.模块丰富是 Apache 的优势.但 Ap ...