delete never used variable

pull/165/head
tjz 2018-05-20 22:30:48 +08:00
parent 9d372fd5c8
commit c67ddb4640
3 changed files with 2 additions and 3 deletions

View File

@ -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'

View File

@ -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>

View File

@ -1,5 +1,5 @@
import { mount } from '@vue/test-utils'
import Vue from 'vue'
export default function focusTest (Component) {
describe('focus and blur', () => {
beforeAll(() => {