Skip to content

Instantly share code, notes, and snippets.

@monbang
Created June 8, 2020 00:05
Show Gist options
  • Save monbang/852bb63d3d82a1648d759ceea5113466 to your computer and use it in GitHub Desktop.
Save monbang/852bb63d3d82a1648d759ceea5113466 to your computer and use it in GitHub Desktop.
vue dating
vue dating
=========================
1. picker: vuejs-datepicker
2. from laravel (j.n.Y) to js date(d.M.yyyy) with date-fns
=> this.start = parse(this.currentObj.start_date, 'd.M.yyyy', new Date());
3. from js date to laravel (j.n.Y) date
=> this.form.start_date = format(this.start, 'd.M.yyyy');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment