Files
mealie/frontend/src/main.js

37 lines
778 B
JavaScript
Raw Normal View History

2020-12-24 16:37:38 -09:00
import Vue from "vue";
import App from "./App.vue";
import vuetify from "./plugins/vuetify";
import store from "./store/store";
import VueRouter from "vue-router";
import { routes } from "./routes";
Vue.config.productionTip = false;
Vue.use(VueRouter);
const router = new VueRouter({
routes,
mode: process.env.NODE_ENV === "production" ? "history" : "hash",
});
new Vue({
vuetify,
store,
router,
render: (h) => h(App),
}).$mount("#app");
// Truncate
2021-01-07 22:54:18 -06:00
let filter = function (text, length, clamp) {
2020-12-24 16:37:38 -09:00
clamp = clamp || "...";
let node = document.createElement("div");
node.innerHTML = text;
let content = node.textContent;
return content.length > length ? content.slice(0, length) + clamp : content;
};
Vue.filter("truncate", filter);
export { router };