mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 11:23:29 +09:00
fix : ... 말줄임표 표현 추가
This commit is contained in:
@@ -94,7 +94,7 @@ function getPriceDetail(){
|
|||||||
}
|
}
|
||||||
|
|
||||||
const getSliceTitle = (value) => {
|
const getSliceTitle = (value) => {
|
||||||
return value.substring(0,50) // todo
|
return value.length > 50 ? value.slice(0, 50) + "....." : value
|
||||||
}
|
}
|
||||||
|
|
||||||
watch(currentPage, (newParams) => {
|
watch(currentPage, (newParams) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user