Giter Club home page Giter Club logo

Comments (4)

ewilan-riviere avatar ewilan-riviere commented on August 29, 2024 3

From unjs/jiti#138, I try other solutions and render functions work well. All files are .ts, I just add vue as dependency and use h function to create elements. It's really amazing and more simple than my first solution with React. I can load CSS file with fs.readFile() and inject it into head element.

import { defineProps, h } from 'vue'
import head from './head'
import header from './header'
import type { Podcast } from '~/models/Podcast'

interface Props {
  podcast: Podcast
  css?: string
}

export default {
  props: defineProps<Props>(),
  setup(props: Props) {
    return h('html', [
      head.setup({ title: props.podcast.title, css: props.css }),
      h('body', [
        header.setup({ podcast: props.podcast }),
      ]),
    ])
  },
}

Of course I can render it to HTML with renderToString() from vue/server-renderer. I don't need react anymore.
If someone is interested, you can check the code here: https://github.com/kiwilan/feedrender/tree/7c55ab89ecc7bb645d97e5be229c08c11e494729/src/components

Thanks again!

from listhen.

pi0 avatar pi0 commented on August 29, 2024 1

Nice finding! Let's keep it open. I think we can improve example and docs!

from listhen.

pi0 avatar pi0 commented on August 29, 2024

Hi. JSX/TSX support is underway for jiti (the runtime library that powers listhen's ts support). You can follow up from here: unjs/jiti#138

from listhen.

ewilan-riviere avatar ewilan-riviere commented on August 29, 2024

Thanks you!

from listhen.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.