摘要:
vue3引入vue-i18n警告: bundler build of vue-i18n. It is recommended to configure your bundler to explicitly replace feature flag globals with boolean liter 阅读全文
摘要:
vue-property-decorator 混入(mixins) // mixins.ts import { Vue } from 'vue-property-decorator' class Mixins extends Vue { public name = '混入' public say() 阅读全文
摘要:
做的一个项目当中需要做一个组件,传入数组,用v-for生成表单,可以展开和收起,展开收起时需要有过渡的效果 在vue里面提供了<transtion></transtion>和<transition-group></transition-group>两个组件,<transtion>用于普通组件元素,不 阅读全文
摘要:
由于业务需求(组件封装),需要在获取el-table下面的el-table-column实例 在 vue2.x 当中直接使用this.$children就可以获取到该实例 但是 vue3.x 弃用了$children,官方建议使用$ref获取子组件实例,由于el-table-column是通过插槽形 阅读全文