Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tech-no-logical/de701dcaf992a384725f06d905a5e7ea to your computer and use it in GitHub Desktop.
Save tech-no-logical/de701dcaf992a384725f06d905a5e7ea to your computer and use it in GitHub Desktop.
<template v-for="selectedtype in data.selectedtypes">
<dropdown class="form-group">
<div class="input-group">
<input class="form-control" type="text" v-model="startdate[selectedtype]">
<div class="input-group-btn">
<button class="btn btn-default" type="button" data-role="trigger">
<i class="fa fa-calendar"></i>
</button>
</div>
</div>
<template slot="dropdown">
<li>
<date-picker v-model="startdate[selectedtype]" format="yyyy-MM-dd" :today-btn="false" :clear-btn="false"></date-picker>
</li>
</template>
</dropdown>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment