use the Cell control in Mint-UI , exactly according to the example of the official website, without left alignment.
Code:
<template>
<div>
<mt-cell
title=""
:to="link"
is-link
value="">
</mt-cell>
<mt-cell title="" label="" is-link></mt-cell>
<mt-cell title="" label=" https://mint-ui.github.io" is-link to="https://mint-ui.github.io"></mt-cell>
<mt-cell title="" label=" /-sharp/toast" is-link :to="{ name: "Toast" }"></mt-cell>
</div>
</template>
<script>
export default {
name: "InfomationCollection"
}
</script>
<style scoped>
.start_icon {
width: 24px;
height: 24px;
}
</style>
result: