mirror of
https://github.com/nolanlawson/pinafore
synced 2025-02-14 18:30:44 +01:00
* remove get() with string pt 1 * remove get() with string pt 2 * fix typo * fix some null exceptions in get() * fixup code style
7 lines
128 B
JavaScript
7 lines
128 B
JavaScript
import { emit } from '../../../_utils/eventBus'
|
|
|
|
export function show () {
|
|
let { id } = this.get()
|
|
emit('showDialog', id)
|
|
}
|