vue3-core/packages/vue/src/index.ts

11 lines
356 B
TypeScript
Raw Normal View History

2018-10-23 23:58:37 +08:00
// TODO this package will be the "full-build" that includes both the runtime
// and the compiler
2018-10-27 03:44:50 +08:00
export * from '@vue/runtime-dom'
2019-09-04 08:51:42 +08:00
if (__FEATURE_PRODUCTION_TIP__) {
console[console.info ? 'info' : 'log'](
`You are running a development build of Vue.\n` +
`Make sure to use the production build (*.prod.js) when deploying for production.`
)
}