It's not the same, though. Those are compiling textual templates into executable JavaScript. React/Preact do this automatically, too.
What Glimmer does is it converts your views into bytecode (not JavaScript) which can be streamed and run without a JavaScript compilation / parsing phase in the browser. Vue, React, and Angular views all ultimately are translated into JavaScript which has to be compiled / parsed in each browser.
Edit: so does Vue if you're using vueify (https://github.com/vuejs/vue/issues/4272).