_Kerman
_Kerman
Closing this, as pointed out by https://github.com/slidevjs/slidev/pull/1196#issuecomment-1979681462
I agree this feature is quite useful. `slidev build` generates a SPA without a server, and may be deployed to a static website host like GitHub pages. So in most...
We've rewritten the VSCode extension for Slidev (https://github.com/slidevjs/slidev/pull/1557). Upgrading the VSCode extension to the latest (`0.49.1`) can fix this issue. Note that in the latest version the VSCode extension starts...
We've rewritten the VSCode extension for Slidev (https://github.com/slidevjs/slidev/pull/1557). Upgrading the VSCode extension to the latest (`0.49.1`) can fix this issue.
TypeScript reported an internal error when I debugging this: ```txt 'False expression: Script kind should match provided ScriptKind:3 and sourceFile.scriptKind: 4, !entry: false' ``` > `3` is TS and `4`...
> With the latest version of vscode extension, types seem to be the same as in .ts files, but the vue playground still shows wrong results. Like this one: This...
非常抱歉带来了不便。请提供尽可能小的可以复现bug的项目以供修复,非常感谢!
The first reported error is expected. Expression in `@click` is wrapped in a closure, so that the type narrowing won't work, because `myState.arrayState` may be changed somewhere else. The second...
@LifeJustDLC The issue you reported seems kind of unusual. Please provide a minimal reproduction project and re-open this issue. Thanks! @bosens-China This seems to be another issue. Please check your...
It works on my machine (`Volar v2.0.21`, `Vue 1.90.1`): code ```vue import { ref } from 'vue' const content = ref('hello world') {{ content }} { "a":1 } ```