mirror of
https://github.com/simon987/sist2.git
synced 2025-04-18 17:56:44 +00:00
18 lines
365 B
Vue
18 lines
365 B
Vue
<template>
|
|
<b-list-group-item action :to="`/userScript/${script.name}`">
|
|
|
|
<div class="d-flex w-100 justify-content-between">
|
|
<h5 class="mb-1">
|
|
{{ script.name }}
|
|
</h5>
|
|
</div>
|
|
</b-list-group-item>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
name: "UserScriptListItem",
|
|
props: ["script"],
|
|
}
|
|
</script> |