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