Answer the question
In order to leave comments, you need to log in
How can I see the next text when I click on read more?
You need to hide part of the text and by clicking on read more you can see it. There is one caveat, the height of the plate where the text is located should increase, while shifting the rest below.
Answer the question
In order to leave comments, you need to log in
If I understand you.
<template>
<button v-on:click="read()">Read More</button>
<div v-show="isRead">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
</div>
</template>
<<script>
import { ref } from 'vue'
export default {
setup () {
const isRead = ref(false)
function read () {
this.isRead = true
}
return {
isRead,
read
}
}
}
</script>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question