Skip to content

Commit

Permalink
Removed Vue Cookies
Browse files Browse the repository at this point in the history
  • Loading branch information
zackbcom committed Jan 8, 2021
1 parent b6cf756 commit 6902650
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions frontend/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@ import vuetify from "./plugins/vuetify";
import store from "./store/store";
import VueRouter from "vue-router";
import { routes } from "./routes";
import VueCookies from "vue-cookies";

Vue.config.productionTip = false;
Vue.use(VueRouter);
Vue.use(VueCookies);

const router = new VueRouter({
routes,
Expand All @@ -23,7 +21,7 @@ new Vue({
}).$mount("#app");

// Truncate
let filter = function(text, length, clamp) {
let filter = function (text, length, clamp) {
clamp = clamp || "...";
let node = document.createElement("div");
node.innerHTML = text;
Expand Down

0 comments on commit 6902650

Please sign in to comment.