You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
285 B

5 years ago
  1. <div id="app">访问的 URL {{ url }}</div>
  2. <script gv-src>
  3. var context = {
  4. title: 'hello'
  5. };
  6. var app = new Vue({
  7. el:"#app",
  8. data: {
  9. url: location.href
  10. }
  11. });
  12. GoVueRender("template/ssr.html", app, context)
  13. </script>