delete never used variable
parent
9d372fd5c8
commit
c67ddb4640
|
@ -1,5 +1,4 @@
|
|||
import { mount } from '@vue/test-utils'
|
||||
import { render } from '@vue/server-test-utils'
|
||||
import Vue from 'vue'
|
||||
import AutoComplete from '..'
|
||||
import focusTest from '../../../tests/shared/focusTest'
|
||||
|
|
|
@ -5,7 +5,7 @@ import BaseMixin from '../../_util/BaseMixin'
|
|||
|
||||
const ResizeableTitle = (h, props, children) => {
|
||||
console.log(props)
|
||||
const { onResize, width, ...restProps } = props
|
||||
const { width, ...restProps } = props
|
||||
|
||||
if (!width) {
|
||||
return <th {...restProps} >{children}</th>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import { mount } from '@vue/test-utils'
|
||||
import Vue from 'vue'
|
||||
|
||||
export default function focusTest (Component) {
|
||||
describe('focus and blur', () => {
|
||||
beforeAll(() => {
|
||||
|
|
Loading…
Reference in New Issue