js 썸네일형 리스트형 Calculate Date Before one day / After one dayconst tmpDate = new Date();> Mon Dec 24 2018 14:54:16 GMT+0900 (Korean Standard Time) /// Before a DaytmpDate.setDate(tmpDate.getDate() - 1);> Sun Dec 23 2018 14:54:16 GMT+0900 (Korean Standard Time) {} /// After a DaytmpDate.setDate(tmpDate.getDate() + 1);> Mon Dec 24 2018 14:54:16 GMT+0900 (Korean Standard Time) Before two month / After four monthconst tmpDate = n.. 더보기 [NUXT] error on IE browser When I develop with Nuxtjs (Vue.js framework), I got the object Error on IE(internet explorer) brower like this. I guess, This occured by nuxt framework's leak browser compatibility.So, I was googling with this error message..Finally I got the solution.. # nuxt.config.js build: {... vendor: ["babel-polyfill"], babel: { presets: [ [ "vue-app", { useBuiltIns: true, targets: { ie: 9, uglify: true }.. 더보기 Codeigniter + Vue When you need to use Vue.js(Nuxt) on codeigniter, there is no default way on codeigniter.So I solve this problem with .htaccess file. The main concept is just share one root folder.And basically, this concept is for separate frontend and backend. Codigniter for Backend. Vue.js for Frontend. Like this.Project |- application |- frontend (Vuejs) |- system |- web |- index.php |- composer.json |- pac.. 더보기 이전 1 2 다음