Last change
on this file since 3d60932 was 57e58a3, checked in by ste08 <sjovanoska@…>, 4 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
580 bytes
|
Rev | Line | |
---|
[57e58a3] | 1 | /**
|
---|
| 2 | * vue v3.5.13
|
---|
| 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 |
|
---|
| 9 | function initDev() {
|
---|
| 10 | {
|
---|
| 11 | initCustomFormatter();
|
---|
| 12 | }
|
---|
| 13 | }
|
---|
| 14 |
|
---|
| 15 | if (!!(process.env.NODE_ENV !== "production")) {
|
---|
| 16 | initDev();
|
---|
| 17 | }
|
---|
| 18 | const compile = () => {
|
---|
| 19 | if (!!(process.env.NODE_ENV !== "production")) {
|
---|
| 20 | warn(
|
---|
| 21 | `Runtime compilation is not supported in this build of Vue.` + (` Configure your bundler to alias "vue" to "vue/dist/vue.esm-bundler.js".` )
|
---|
| 22 | );
|
---|
| 23 | }
|
---|
| 24 | };
|
---|
| 25 |
|
---|
| 26 | export { compile };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.