I've been attempting to customize the delimiters in Vue.js 3, but unfortunately, it's not taking effect as expected.
Initially, I tried setting the component parameter delimiters
like this:
export default defineComponent({
delimiters: ["${", "}$"],
// ...
})
However, no changes were observed.
Next, I attempted to modify the main.ts file in this manner:
import { createApp } from "vue";
import router from "./router";
import App from "./App.vue";
App.delimiters = ["${", "}$"];
createApp(App)
.use(router)
.mount("#app");
Yet, the template string interpolation remains unaffected.
Any insights on what might be causing this issue?