mirror of
https://akkoma.dev/AkkomaGang/akkoma-fe
synced 2025-04-30 11:09:30 +08:00
10 lines
228 B
JavaScript
10 lines
228 B
JavaScript
export default {
|
|
props: [ 'user' ],
|
|
computed: {
|
|
subscribeUrl () {
|
|
|
|
const serverUrl = new URL(this.user.statusnet_profile_url)
|
|
return `${serverUrl.protocol}//${serverUrl.host}/main/ostatus`
|
|
}
|
|
}
|
|
}
|