会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
富坚老贼
https://github.com/buchizaodian
新随笔
管理
上一页
1
···
6
7
8
9
10
11
12
13
14
···
86
下一页
2021年6月24日
Vue3 Vuex
摘要: 一、 安装 npm install vuex@next --save 二、 基本使用 store.js import { createStore } from 'vuex' const store = createStore({ //用来保存数据 state() { return { count:
阅读全文
posted @ 2021-06-24 13:32 富坚老贼
阅读(112)
评论(0)
推荐(0)
编辑
Vue3 Router-高级
摘要:
阅读全文
posted @ 2021-06-24 10:03 富坚老贼
阅读(16)
评论(0)
推荐(0)
编辑
2021年6月23日
Vue3 Router-基础2
摘要: 六、编程式路由 可以通过编程的方式进行url跳转 App.vue <template> <button @click="go">跳转到about</button> <router-view></router-view> </template> <script> export default { me
阅读全文
posted @ 2021-06-23 09:13 富坚老贼
阅读(180)
评论(0)
推荐(0)
编辑
2021年6月21日
Vue3 Router-基础1
摘要: 一、 安装 npm install vue-router@4 二、基础使用 定义路由 router.js import { createRouter,createWebHashHistory} from 'vue-router' import About from '../components/Ab
阅读全文
posted @ 2021-06-21 19:18 富坚老贼
阅读(284)
评论(0)
推荐(0)
编辑
2021年6月19日
vue3 插槽
摘要: 基本使用 <div id="vm"> <my-component>abc</my-component> </div> <script type="module"> import * as obj from './main.js' const app = Vue.createApp({ }); app
阅读全文
posted @ 2021-06-19 16:31 富坚老贼
阅读(155)
评论(0)
推荐(0)
编辑
vue3 emit事件
摘要: <div id="vm"> <div>子组件点击时:{{count}}</div> <blog-post @myaddevent='fuaddevent'></blog-post> </div> <script type="module"> import * as obj from './main.
阅读全文
posted @ 2021-06-19 15:19 富坚老贼
阅读(3573)
评论(0)
推荐(0)
编辑
vue3 无props 或 emits的父子组件传递
摘要: 父传子,非prop
阅读全文
posted @ 2021-06-19 11:42 富坚老贼
阅读(131)
评论(0)
推荐(0)
编辑
2021年6月18日
vue3 prop
摘要: Prop是由父组件传递数据到子组件 1.通过props数组传递数据 <div id="vm"> <blog-t title="标题" subtitle='副标题'></blog-t> </div> <script> const app = Vue.createApp({}); app.compone
阅读全文
posted @ 2021-06-18 10:08 富坚老贼
阅读(2277)
评论(0)
推荐(0)
编辑
2021年6月16日
vue3 组件注册
摘要: 组件和组件复用 <div id="vm"> <button-counter></button-counter> <button-counter></button-counter> </div> <script> const app = Vue.createApp({}); app.component
阅读全文
posted @ 2021-06-16 19:36 富坚老贼
阅读(974)
评论(0)
推荐(0)
编辑
vue3 表单输入绑定
摘要: 一、基础 v-model 指令在表单 <input>、<textarea> 及 <select> 元素上创建双向数据绑定 1.文本 <div id="vm"> <input v-model="message" placeholder="edit me" /> <p>Message is: {{ me
阅读全文
posted @ 2021-06-16 14:47 富坚老贼
阅读(825)
评论(0)
推荐(0)
编辑
上一页
1
···
6
7
8
9
10
11
12
13
14
···
86
下一页
公告