- composer and npm updates
This commit is contained in:
parent
07c0c8b7db
commit
ecaf2b5790
32 changed files with 2214 additions and 2123 deletions
|
@ -16,7 +16,8 @@ import Dataset from './components/Dataset';
|
|||
import PersonTable from './components/PersonTable.vue';
|
||||
import MyAutocomplete from './components/MyAutocomplete.vue';
|
||||
import VueToast from 'vue-toast-notification';
|
||||
import 'vue-toast-notification/dist/index.css';
|
||||
// import 'vue-toast-notification/dist/index.css';
|
||||
import 'vue-toast-notification/dist/theme-default.css';
|
||||
Vue.use(VueToast);
|
||||
|
||||
@Component({
|
||||
|
|
|
@ -4,7 +4,8 @@ import DeleteButton from "./DeleteButton";
|
|||
import "leaflet-draw";
|
||||
import { Component, Inject, Vue, Prop, Watch } from "vue-property-decorator";
|
||||
import VueToast from "vue-toast-notification";
|
||||
import "vue-toast-notification/dist/index.css";
|
||||
// import "vue-toast-notification/dist/index.css";
|
||||
import 'vue-toast-notification/dist/theme-default.css';
|
||||
Vue.use(VueToast);
|
||||
|
||||
// import ToastedPlugin from 'vue-toasted';
|
||||
|
|
|
@ -39,11 +39,11 @@ export default class VueCountdown extends Vue {
|
|||
// };
|
||||
// },
|
||||
|
||||
warningSeconds: Number = this.seconds;
|
||||
warningSeconds: Number;// = this.seconds;
|
||||
timer: EasyTimer = null;
|
||||
time: string = '';
|
||||
label: string = this.message ? this.message : 'Time\'s up!';
|
||||
timerUnits = this.units ? this.units : ['hours', 'minutes', 'seconds'];
|
||||
label: string;// = this.message ? this.message : 'Time\'s up!';
|
||||
timerUnits: string[];// = this.units ? this.units : ['hours', 'minutes', 'seconds'];
|
||||
timerOptions = {
|
||||
startValues: {},
|
||||
// target: {},
|
||||
|
@ -58,6 +58,11 @@ export default class VueCountdown extends Vue {
|
|||
}
|
||||
return Date.parse(this.date);
|
||||
}
|
||||
mounted() {
|
||||
this.warningSeconds = this.seconds;
|
||||
this.label = this.message ? this.message : 'Time\'s up!';
|
||||
this.timerUnits = this.units ? this.units : ['hours', 'minutes', 'seconds'];
|
||||
}
|
||||
|
||||
created() {
|
||||
this.timer = new EasyTimer();
|
||||
|
|
|
@ -40,7 +40,7 @@ import datetime from 'vuejs-datetimepicker';
|
|||
// import datetime from 'vuejs-datetimepicker';
|
||||
// import { Validator } from 'vee-validate';
|
||||
import VueToast from 'vue-toast-notification';
|
||||
import 'vue-toast-notification/dist/index.css';
|
||||
import 'vue-toast-notification/dist/theme-default.css';
|
||||
Vue.use(VueToast);
|
||||
|
||||
import Tooltip from 'vue-directive-tooltip';
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue