vue.runtime.esm-bundler.js 517 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. if (!!(process.env.NODE_ENV !== "production")) {
  9. initDev();
  10. }
  11. const compile = () => {
  12. if (!!(process.env.NODE_ENV !== "production")) {
  13. warn(
  14. `Runtime compilation is not supported in this build of Vue.` + (` Configure your bundler to alias "vue" to "vue/dist/vue.esm-bundler.js".` )
  15. /* should not happen */
  16. );
  17. }
  18. };
  19. export { compile };