Thank you for reading.
I am new to polymer/lit-element,lit-html. I have started with the PWA starter kit. And at my surprise it doesn't use polymer elements but lit-elements.
I have tried to apply the default app-localize-behaviour from https://polymer-library.polymer-project.org/3.0/docs/apps/localize .
Without success.
Using mixinBehaviors with PageViewElement seems to break.
mixinBehaviors([AppLocalizeBehavior], PageViewElement)
End up on an error of the type:
TypeError: this.constructor._classProperties is undefined
I saw in the same time there has been several libraries starting to flourish like:
https://github.com/andreasbm/lit-translate
Or:
https://github.com/hamedasemi/lit-element-i18n
So, I must admit I am now lost, in what should I do to do internationalization or localization with lit-element and lit-html.
Is there any recommended library, did I miss a post about what is the official recommended way?
Thank you in advance, and have a lovely day.