版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

23 lines
597 B

  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 };