vue3-core/packages/runtime-core/src/warning.ts

5 lines
75 B
TypeScript
Raw Normal View History

2019-05-28 18:06:00 +08:00
export function warn(...args: any[]) {
// TODO
2019-08-28 02:42:05 +08:00
console.warn(...args)
2019-05-28 18:06:00 +08:00
}