vue3
Fx_cap
前端
展开
-
Pinia的基本使用
pinia的基本使用原创 2022-10-14 15:18:32 · 2850 阅读 · 0 评论 -
vue3+ts+IntersectionObserver实现图片懒加载
vue3+ts+IntersectionObserver实现图片懒加载原创 2022-10-11 15:38:08 · 346 阅读 · 0 评论 -
vue3组件批量注册
组件内起名字<template> <div>M1</div></template><script>export default { name: "M1",};</script><style></style>component/index.js中const requireAll = require.context("@/components", true, /\.vue$/原创 2022-03-21 16:52:17 · 985 阅读 · 0 评论 -
vue3中v-model语法糖绑定引用类型和基本类型的使用
vue3.0中 v-model 是 modelValue 和 update:modelValue 的语法糖父组件<template> <div id="nav"> <!-- 子组件上绑定 v-model --> <son v-model="person" /> <p>我是父亲的:{{ person.name }}</p> <button @click="handleClick">原创 2022-03-09 15:18:46 · 2205 阅读 · 1 评论