Last active
June 4, 2021 13:06
-
-
Save thecrypticace/c96f791510c45bb289db5b6d22b04f96 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { createApp, configureCompat } from "vue" | |
configureCompat({ MODE: 3 }) | |
const app = createApp({ | |
setup() { | |
return { | |
// stuff | |
} | |
} | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare module "vue" { | |
import { CompatVue } from "@vue/runtime-core" | |
export const configureCompat: CompatVue["configureCompat"] | |
// TODO: How do I make this not necessary | |
export * from "@vue/runtime-dom" | |
export { } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment