import html from "html"; import { useAppStore } from "../store/index.js"; export default { template: html` {{$t('application')}} `, setup() { const appStore = useAppStore(); return { appStore, }; }, };