javascript Vue JS Wrapper组件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript Vue JS Wrapper组件相关的知识,希望对你有一定的参考价值。
Vue.component('date-picker', function() {
template: '<input/>',
mounted: function() {
$(this.$el).datepicker();
}
});
<template>
<input type="text" :class='pickerClasses' name="datepicker" placeholder="">
</template>
<script>
export default {
name: "DatePicker",
props: {
"pickerClasses": {default: "form-control"},
'dateFormat': {default: "mm/dd/yyyy"},
'multidate': {default: false},
'multidateSeparator': {default: " | "},
'showClearButton': {default: true},
'todayHighlight': {default: true},
// etc
},
mounted: function() {
$(this.$el).datepicker();
}
}
</script>
<style scoped>
</style>
以上是关于javascript Vue JS Wrapper组件的主要内容,如果未能解决你的问题,请参考以下文章
javascript 降价 - wrapper.js
重新绑定 vue.js 组件
vue获取dom
vue提供操作DOM的方法
vue.js绑定事件
如何在Vue.js中正确添加条件事件绑定?