perf(input): foucs blur 原生事件绑定

This commit is contained in:
就眠仪式
2021-10-27 14:17:33 +08:00
parent 55fc38ac49
commit 5aa3544914
4 changed files with 24 additions and 25 deletions

View File

@@ -1,7 +1,8 @@
<template>
<div class="layui-colla-item">
<h2 class="layui-colla-title" @click="showHandle">
{{ title }}<i class="layui-icon layui-colla-icon">{{ isShow ? '' : '' }}</i>
{{ title
}}<i class="layui-icon layui-colla-icon">{{ isShow ? '' : '' }}</i>
</h2>
<div class="layui-colla-content" :class="isShow ? 'layui-show' : ''">
<p>
@@ -14,13 +15,12 @@
<script setup name="LayCollapseItem" lang="ts">
import { defineProps, inject, ref } from 'vue'
const props =
defineProps<{
id: string
title: string
}>()
const props = defineProps<{
id: string
title: string
}>()
const openKeys = inject('openKeys') as String[]
const openKeys = inject('openKeys') as string[]
const isShow = ref(openKeys.includes(props.id))

View File

@@ -16,14 +16,13 @@
<script setup name="LayInput" lang="ts">
import { defineProps, defineEmits } from 'vue'
const props =
defineProps<{
name?: string
type?: string
modelValue?: string
placeholder?: string
disabled?: boolean
}>()
const props = defineProps<{
name?: string
type?: string
modelValue?: string
placeholder?: string
disabled?: boolean
}>()
const emit = defineEmits(['update:modelValue', 'input', 'focus', 'blur'])