Dialog.vue:
<template>
<div>
<button @click="close">Close</button>
<slot />
</div>
https://bolinwoodturners.co.uk/ | |
https://www.one2onecaraudio.co.uk/ | |
http://walkingforpaws.co.uk/ | |
https://www.barracudascuba.co.uk/ | |
http://www.nottsgates.com/ | |
https://www.mpm-ltd.co.uk/ | |
https://www.nottinghamshirehealthcare.nhs.uk/ | |
https://www.elmbanknursinghome.co.uk/ | |
https://www.woodthorpegarage.co.uk/ | |
http://st-james-nottingham.org.uk/ |
Dialog.vue:
<template>
<div>
<button @click="close">Close</button>
<slot />
</div>
this list will contain discord users that are to be preemptively banned due to their toxicity |
computed: { | |
hasScrolledNearEnd () { | |
return !inRange(this.scrollView.endIndex, this.notifications.length - 5); | |
}, | |
}, | |
watch: { | |
hasScrolledNearEnd (nearEnd, previousValue) { | |
if (nearEnd && !previousValue) { | |
this.updateNotifications(); | |
} |
import axios from 'axios'; | |
const rocketEndpoint = 'https://api.spacexdata.com/v3/rockets'; | |
const upcomingLaunchesEndpoint = 'https://api.spacexdata.com/v3/launches/upcoming'; | |
const getRockets = async () => { | |
try { | |
return { | |
success: true, | |
data: (await axios.get(rocketEndpoint)).data |
const trimText = (input = '', maximumLength = 80) => { | |
const exceedsMaximum = input.length >= maximumLength; | |
return { | |
exceedsMaximum, | |
text: exceedsMaximum ? `${ input.substr(0, input.lastIndexOf(' ', maximumLength)) }...` : input, | |
} | |
}; | |
export default trimText; |
export const filterCollection = <TOriginal>(originalCollection: TOriginal[], search: (item: TOriginal) => boolean) => { | |
const result = originalCollection.filter(search); | |
return { | |
anyMatches: result.length > 0, | |
originalCollection, | |
filteredCollection: result | |
}; | |
}; | |
import { filterCollection } from './filter-collection'; |
// See if you can figure it out. | |
+(!+[]+!![]+!![]+!![]+[]+(!+[]+!![]+[])); | |
// 42 |
module.exports = { | |
root: true, | |
env: { | |
node: true, | |
}, | |
extends: [ | |
'plugin:vue/strongly-recommended', | |
'plugin:vue/recommended', | |
'plugin:vue/essential', | |
'@vue/airbnb', |
Render Error Invariant Violation: Objects are not valid as a React child (found: object with keys {en-GB}). If you meant to render a collection of children, use an array instead. | |
in span | |
in button | |
in div | |
in div | |
in section | |
in div | |
in Unknown (created by TabContent) | |
in TabContent (created by StoreComponent) | |
in div (created by StoreComponent) |