repl
repl copied to clipboard
Vue SFC REPL as a Vue 3 component
I'm developing a component library and was hoping to use the repl in my showcase. I added `@vue/repl` to my project. I now want to import my package into the...
Hi! Thanks for the project. When using the CodeMirror editor the text is wrapped by default. When I change to using the Monaco editor the editor becomes long and requires...
By inspecting the code, I found that runtimeErr is only used in the Message component and is not exposed outside the component. The error in the state doesn't seem to...
Status: on hold. Waiting for more stable version. closes #210 closes #211 ## Issues - The version of CDN dependency cannot be customized. - Click go to definition on the...
`src/store.ts` if(activeFile.value !== mainFile.value) ```ts // if const activeFile = ref('app.vue') const mainFile = ref('appWarp.vue') function init() { watchEffect(() => compileFile(store, activeFile.value).then( // not activeFile, sould be mainFile (errs) =>...
[fixbug#9445](https://github.com/vuejs/core/issues/9445) When repl performs ssr in the online environment, `import { useModel as _useModel } from 'vue'` will use the `*runtime.esm-browser.js` file, but in the dev environment it will The...
Resolves: https://github.com/vuejs/repl/issues/197
If you use the change event to save the code, every input triggers the save, I refactored it to use `ctrl+s` to save the code, and if there is no...
import 'foo/style.css' --> ``, href is import.meta.resolve('foo/style.css') import 'http://127.0.0.1/style.css' --> ` ` import data from 'foo/data.json' --> const data = await (await fetch(import.meta.resolve('foo/data.json'))).json()