vue.runtime.esm-bundler.js 597 B

12345678910111213141516171819202122
  1. import { initCustomFormatter, warn } from '@vue/runtime-dom';
  2. export * from '@vue/runtime-dom';
  3. function initDev() {
  4. {
  5. initCustomFormatter();
  6. }
  7. }
  8. // This entry exports the runtime only, and is built as
  9. if ((process.env.NODE_ENV !== 'production')) {
  10. initDev();
  11. }
  12. const compile = () => {
  13. if ((process.env.NODE_ENV !== 'production')) {
  14. warn(`Runtime compilation is not supported in this build of Vue.` +
  15. (` Configure your bundler to alias "vue" to "vue/dist/vue.esm-bundler.js".`
  16. ) /* should not happen */);
  17. }
  18. };
  19. export { compile };