fix(v-on): capitalize dynamic event names

This commit is contained in:
Evan You
2020-07-13 17:36:46 -04:00
parent 576344d2c3
commit 9152a89016
5 changed files with 23 additions and 16 deletions

View File

@@ -1,6 +1,9 @@
import { isArray, isObject, isPlainObject } from './index'
// For converting {{ interpolation }} values to displayed strings.
/**
* For converting {{ interpolation }} values to displayed strings.
* @private
*/
export const toDisplayString = (val: unknown): string => {
return val == null
? ''