This repository has been archived on 2023-08-30. You can view files and clone it, but cannot push or open issues/pull-requests.
bytedo
/
wcui
Archived
1
0
Fork 0
wcui/src/picker/date.wc

22 lines
238 B
Plaintext
Raw Normal View History

2019-07-29 16:05:42 +08:00
<template>
<input type="text" />
</template>
<style lang="scss">
:host {
display: inline-block;
}
</style>
<script>
export default class DatePicker {
props = {
value: ''
}
constructor() {
/* render */
}
}
</script>