This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
checkIfComponentExists() { | |
const keys = Object.keys(this.$options.components); | |
const names = keys.map(key => { | |
const component = this.$options.components[key]; | |
let name = ''; | |
if (component) { | |
name = component.name; | |
} | |
return name; | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*.db diff=sqlite3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.vertical-center { | |
position: absolute; | |
top: 50%; | |
left: 50%; | |
transform: translate(-50%, -50%); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; Autor: Miroslav Balik | |
; Source code: EXE 16b DOS | |
; Directs for assembling and linking: | |
; nasm odeslani.asm -fobj | |
; alink odeslani.obj | |
;********************************Macros*********************************** | |
%macro dosint 1 | |
mov ah,%1 |
NewerOlder