mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-08-05 13:35:23 +02:00
Removed Vue Cookies
This commit is contained in:
parent
b6cf7567f1
commit
6902650201
1 changed files with 1 additions and 3 deletions
|
@ -4,11 +4,9 @@ import vuetify from "./plugins/vuetify";
|
||||||
import store from "./store/store";
|
import store from "./store/store";
|
||||||
import VueRouter from "vue-router";
|
import VueRouter from "vue-router";
|
||||||
import { routes } from "./routes";
|
import { routes } from "./routes";
|
||||||
import VueCookies from "vue-cookies";
|
|
||||||
|
|
||||||
Vue.config.productionTip = false;
|
Vue.config.productionTip = false;
|
||||||
Vue.use(VueRouter);
|
Vue.use(VueRouter);
|
||||||
Vue.use(VueCookies);
|
|
||||||
|
|
||||||
const router = new VueRouter({
|
const router = new VueRouter({
|
||||||
routes,
|
routes,
|
||||||
|
@ -23,7 +21,7 @@ new Vue({
|
||||||
}).$mount("#app");
|
}).$mount("#app");
|
||||||
|
|
||||||
// Truncate
|
// Truncate
|
||||||
let filter = function(text, length, clamp) {
|
let filter = function (text, length, clamp) {
|
||||||
clamp = clamp || "...";
|
clamp = clamp || "...";
|
||||||
let node = document.createElement("div");
|
let node = document.createElement("div");
|
||||||
node.innerHTML = text;
|
node.innerHTML = text;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue