首頁  >  問答  >  主體

如何在erb視圖中使用Hyperstack元件進行渲染

<p>例如,我有一個包含許多邏輯的erb頁面。我想使用Hyperstack在此頁面上建立使用者訊息。我如何在這個erb頁面上渲染Hyperstack元件? 更新: 我知道這是可能的,因為Hyperstack組件嵌入在application.erb中。 </p>
P粉301523298P粉301523298452 天前464

全部回覆(1)我來回復

  • P粉884548619

    P粉8845486192023-08-17 13:36:50

    我找到了解決方案。

    erb檔:

    <%= react_component('TestComponent') %>

    hyperstack元件:

    class TestComponent < HyperComponent
      render(DIV) do
        '它运行正常'
      end
    end

    回覆
    0
  • 取消回覆