Add docker rename volume tool

This commit is contained in:
2024-09-28 15:16:10 +03:00
parent ee930f96fc
commit f75809c12d
32 changed files with 703 additions and 627 deletions

View File

@ -26,9 +26,9 @@ export default {
data() {
return {
toolData: {
data: '',
data: ""
},
toolResult: '',
toolResult: ""
};
},
methods: {
@ -37,7 +37,7 @@ export default {
if (word.length <= 3) {
this.toolResult = word;
return
return;
}
const firstLetter = word[0];
@ -45,9 +45,9 @@ export default {
const numberOfLetters = word.length - 2;
this.toolResult = `${firstLetter}${numberOfLetters}${lastLetter}`;
},
},
}
}
}
};
</script>
<style lang="scss">