vue
巷陌540
这个作者很懒,什么都没留下…
展开
-
el-tooltip判断文本溢出时才隐藏
html代码 <el-tooltip content="哈哈哈" placement="top" :disabled="!isShowTooltip" > <span class="nameStyle" @mouseenter="visibilityChange($event)" >哈哈哈哈哈哈哈哈</span > </el-tooltip> js 代码 //文字溢出隐藏 visibilityChange(原创 2022-04-19 15:35:35 · 477 阅读 · 0 评论 -
vue 组件传值
vue组件间传值 1.父子组件给儿子组件传值 1.父亲组件传值给儿子组件 通过props属性进行传递。(子组件中设置props:[“count”],然后父亲在调用子组件的标签中添加count:“data的变量”)代码如下 //儿子组件 Children.vue <script> import Grandson from './Grandson' export default { props:['count'] } </script> 父亲组件 <Children :原创 2021-08-10 22:28:24 · 189 阅读 · 0 评论 -
Vue 生命周期
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-原创 2021-08-10 20:55:03 · 298 阅读 · 0 评论