UNPKG

jest-vue-preprocessor

Version:

Preprocessor that allows importing of .vue files in jest tests

15 lines (14 loc) 195 B
export default { props: { onClick: { type: Function, required: true, }, }, name: 'app', methods: { clickHandler(input) { this.onClick(input); }, }, };