vue.runtime.esm-bundler.js 580 B

1234567891011121314151617181920212223242526
  1. /**
  2. * vue v3.5.12
  3. * (c) 2018-present Yuxi (Evan) You and Vue contributors
  4. * @license MIT
  5. **/
  6. import { initCustomFormatter, warn } from '@vue/runtime-dom';
  7. export * from '@vue/runtime-dom';
  8. function initDev() {
  9. {
  10. initCustomFormatter();
  11. }
  12. }
  13. if (!!(process.env.NODE_ENV !== "production")) {
  14. initDev();
  15. }
  16. const compile = () => {
  17. if (!!(process.env.NODE_ENV !== "production")) {
  18. warn(
  19. `Runtime compilation is not supported in this build of Vue.` + (` Configure your bundler to alias "vue" to "vue/dist/vue.esm-bundler.js".` )
  20. );
  21. }
  22. };
  23. export { compile };