2019-11-14
1774
#vue
Anjolaoluwa Adebayo-Oyetoro
9785
Nov 14, 2019 â‹… 6 min read

Using JSX with Vue

Anjolaoluwa Adebayo-Oyetoro Maker. Writes sometimes. Playful most times. Loves beautiful UIs.

Recent posts:

how to delete local and remote branches in Git

How to delete local and remote branches in Git

Explore the fundamental commands for deleting local and remote branches in Git, and discover more advanced branch management techniques.

Timonwa Akintokun
Mar 13, 2025 â‹… 7 min read

The complete guide to the AbortController API

Check out a complete guide on how to use the AbortController and AbortSignal APIs in both your backend and frontend.

Joseph Mawa
Mar 12, 2025 â‹… 9 min read
Not Everything Should Be A Chat: Rethinking LLM Integration

Beyond chat: Rethinking how we use LLMs

LLMs can do more than chat! Explore alternative integration models that improve efficiency, reduce complexity, and enhance user control.

Rosario De Chiara
Mar 12, 2025 â‹… 4 min read

A guide to image overlays in CSS

Learn the basics of applying image overlays in CSS and explore more interactive techniques like hover effects and animations.

Ibadehin Mojeed
Mar 11, 2025 â‹… 5 min read
View all posts

4 Replies to "Using JSX with Vue"

  1. Hi, I just read the post and it is amazing, but I was searching for event emitters, have thoughts on this?

    At first, I assume with JSX there’s no way to emit events like:
    “`

    “`

  2. export default {
    render () {
    const directives = [
    { name: ‘my-dir’, value: 123, modifiers: { abc: true } }
    ]
    return (

    )
    }
    }

    [Vue warn]: Failed to resolve directive: my-dir

    how use custom-directive in JSX ?

Leave a Reply