2026-03-12 15:51:30 +04:00

22 lines
441 B
JavaScript

import { LayoutComponents } from '@/store/layout';
import config from "../config";
export default {
data: () => {
return {
appConfig: {
themeColors: config.app.themeColors,
colors: config.colors,
layoutComponents: LayoutComponents,
}
}
},
methods: {
decodeHtml(html) {
let txt = document.createElement("textarea");
txt.innerHTML = html;
return txt.value;
}
}
};