@@ -330,6 +330,13 @@ public function injected_computed_property_is_accessable_within_blade_view()
             ->assertSee('bar');
     }
 
+    /** @test */
+    public function injected_computed_property_attribute_is_accessible_within_blade_view()
+    {
+        Livewire::test(InjectedComputedPropertyWithAttributeStub::class)
+            ->assertSee('bar');
+    }
+
     /** @test */
     public function computed_property_is_memoized_after_its_accessed()
     {
@@ -474,3 +481,21 @@ public function render()
         HTML;
     }
 }
+
+class InjectedComputedPropertyWithAttributeStub extends Component
+{
+    #[Computed]
+    public function fooBar(FooDependency $foo)
+    {
+        return $foo->baz;
+    }
+
+    public function render()
+    {
+        return <<<'HTML'
+        <div>
+            {{ var_dump($this->foo_bar) }}
+        </div>
+        HTML;
+    }
+}