This commit is contained in:
tamaina 2022-03-05 20:12:33 +09:00
parent 6dc9a6ccc3
commit e41047de6a
2 changed files with 1 additions and 5 deletions

View File

@ -33,7 +33,7 @@ export default defineComponent({
},
},
setup(props, { slots, expose, emit }) {
setup(props, { slots, expose }) {
function getDateText(time: string) {
const date = new Date(time).getDate();
const month = new Date(time).getMonth() + 1;

View File

@ -90,13 +90,9 @@ export function scrollToTop(el: HTMLElement, options: { behavior?: ScrollBehavio
/**
* Scroll to Bottom
* >
*
* @param el Content element
* @param options Scroll options
* @param container Scroll container element
* @param sticky To add sticky-top
* @param mobileButtons To add mobile buttons
*/
export function scrollToBottom(
el: HTMLElement,