版博士V2.0程序
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 

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