initial scratch
This commit is contained in:
parent
3fc9673a7d
commit
5b7c653874
8 changed files with 110 additions and 0 deletions
24
src/components/update_notification/update_notification.js
Normal file
24
src/components/update_notification/update_notification.js
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
import Modal from 'src/components/modal/modal.vue'
|
||||
import { library } from '@fortawesome/fontawesome-svg-core'
|
||||
import pleromaTan from 'src/assets/pleromatan_apology.png'
|
||||
import pleromaTanFox from 'src/assets/pleromatan_apology_fox.png'
|
||||
|
||||
import {
|
||||
faTimes
|
||||
} from '@fortawesome/free-solid-svg-icons'
|
||||
library.add(
|
||||
faTimes
|
||||
)
|
||||
|
||||
const SettingsModal = {
|
||||
data () {
|
||||
return {
|
||||
pleromaTanVariant: Math.random() > 0.5 ? pleromaTan : pleromaTanFox
|
||||
}
|
||||
},
|
||||
components: {
|
||||
Modal
|
||||
}
|
||||
}
|
||||
|
||||
export default SettingsModal
|
||||
Loading…
Add table
Add a link
Reference in a new issue