BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
<div ref="about" v-if="hasContent" class="card-body">
<ejs-datepicker v-model="date" placeholder="TEST" :created="onCreated"></ejs-datepicker>
</div> |
export default {
data: function () {
return {
};
},
methods: {
onCreated: function (args) {
this.$refs.about.style.display = "block";
}
},
beforeDestroy() {
this.$refs.about.style.display = "none";
},
} |