vue3.0+ts
yang_web
前端开发工程师,不断提高自己
展开
-
基于element-ui的table组件封装的合并列组件(很灵活)
基于element-ui封装table合并列原创 2022-07-13 17:13:20 · 440 阅读 · 1 评论 -
elementUI的日期选择组件只能选择当前年的日期,不能选择之前年和之后年的日期
elementUI的日期选择组件只能选择当前年的日期,不能选择之前年和之后年的日期 <el-date-picker v-model="form.nowYear" type="date" format="yyyy-MM-dd" value-format="yyyy-MM-dd" placeholder="选择当前年份" :picker-options="pickerOptions" />pickerOptions: { disabledDate(原创 2022-05-07 16:58:45 · 3072 阅读 · 1 评论 -
vue开发封装思路--api篇
vue开发封装思路--api篇原创 2022-04-20 10:53:40 · 1057 阅读 · 1 评论 -
动态表单 自定义布局(代码实现)
动态表单的实现原创 2021-12-03 16:05:26 · 1117 阅读 · 3 评论 -
vue拖拽生成动态表单(可缩放和自定义布局)
vue拖拽生成动态表单(可缩放和自定义布局)如果需要源码,可以在评论区留言原创 2021-11-23 16:00:35 · 2428 阅读 · 21 评论 -
vite2.0+vue3.0+ts
vite2.0+vue3.0+ts1、template中可以有多个根元素,以前只能包在一个父容器中<template><p>{{count}}</p><el-button type="primary" @click="clickTo">子组件</el-button><el-button type="primary" @click="go">跳转</el-button>{{state.sum}}<van-b原创 2021-07-16 14:54:55 · 360 阅读 · 1 评论 -
vue3.0中子组件向父组件传值emit的使用注意事项
子组件的写法,需要从setup函数中引出{emit}<template> <div id="center" v-if="isShow"> <h2><slot>my model</slot></h2> <el-button type="primary" @click="btnclose">传递事件</el-button> <el-button type="primary" .原创 2021-05-20 14:14:47 · 3866 阅读 · 1 评论 -
vue3.0+ts语法及写法(最新)
script中使用ts的写法,以及store和router在.vue页面的使用方法,需要从vue-routerhe 和vuex中导出useStore和useRoute(userouter)通过getCurrentInstance()方法可以获得组件实例<script lang="ts">import { defineComponent, computed, onMounted, watch,ref,getCurrentInstance,reactive,nextTick ,toRefs}原创 2021-05-20 14:08:35 · 9290 阅读 · 1 评论 -
vue3.0+TS的语法练习
<template> <div class="home"> {{age}} <p>{{getSum}}</p> <p>{{two.id}}</p> <input type="text" ref="inputRef"> <button @click="add">按钮</button> <h3>m1: {{m1}}</h3>原创 2021-04-29 09:50:48 · 933 阅读 · 1 评论