* Order by decreasing ids on the home page. * Confirmation modals when deleting / refetching items. * Spinners when loading. * Getting started message when there is no recipe. * Add the ability to refetch a recipe from the website (when a Weboob module has been improved for instance).
28 lines
710 B
JavaScript
28 lines
710 B
JavaScript
// The Vue build version to load with the `import` command
|
|
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
|
|
import Vue from 'vue';
|
|
import Vuetify from 'vuetify';
|
|
import 'roboto-fontface/css/roboto/roboto-fontface.css';
|
|
import 'font-awesome/css/font-awesome.css';
|
|
import 'material-design-icons/iconfont/material-icons.css';
|
|
import 'vuetify/dist/vuetify.min.css';
|
|
|
|
import App from './App';
|
|
import router from './router';
|
|
|
|
// Isomorphic fetch
|
|
require('es6-promise').polyfill();
|
|
require('isomorphic-fetch');
|
|
|
|
Vue.use(Vuetify);
|
|
|
|
Vue.config.productionTip = false;
|
|
|
|
/* eslint-disable no-new */
|
|
new Vue({
|
|
el: '#app',
|
|
router,
|
|
components: { App },
|
|
template: '<App/>',
|
|
});
|