Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Globals don't work inside component files #26

Open
onemoreahmad opened this issue Jun 29, 2024 · 0 comments
Open

Globals don't work inside component files #26

onemoreahmad opened this issue Jun 29, 2024 · 0 comments

Comments

@onemoreahmad
Copy link

Hi,

I noticed that Globals don't work inside components directly.

for example, this works just fine:

{% set foo = 'bar' %}

<x-button>
    {{ foo }}
</x-button> 

But if I print {{ foo }} inside the component file directly it won't work.

Home page

{% set foo = 'bar' %}
<x-header />

In /components/header.twig

<div>
 {{ foo }}  // doesn't work
</div> 

It won't work even if I chain ->useGlobalContext() method in the Configuration setp

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant