@progress/kendo-vue-grid
Version:
32 lines (31 loc) • 1.05 kB
JavaScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { defineComponent as t, inject as n, createVNode as r } from "vue";
import { provideLocalizationService as c } from "@progress/kendo-vue-intl";
import { noRecords as o, messages as a } from "./messages/main.mjs";
import { getDefaultSlots as l } from "@progress/kendo-vue-common";
const v = /* @__PURE__ */ t({
name: "GridNoRecords",
inject: {
kendoLocalizationService: {
default: null
}
},
setup() {
return {
kendoLocalizationService: n("kendoLocalizationService", {})
};
},
render() {
const e = l(this), i = c(this).toLanguageString(o, a[o]);
return e ? r("div", null, [e]) : i;
}
});
export {
v as GridNoRecords
};