Combination of polymer and razor

Is there a way to combine Razor (CSHTML) with polymer elements? Or is it not necessary for the Polymer element to be imported into HTML?

Thanks in advance!

+3


source to share


1 answer


You should be able to combine any templating engine:

  • Compiling Custom Templates for HTML Output
  • Using built-in Polymer event handlers / creating custom elements to dynamically compile custom template code to HTML at runtime using a client-side compiler


So, generally speaking, using Polymer shouldn't stop you from finding a way to use your templating engine as it did with your other client applications.

+1


source







All Articles