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.

31 lines
584 B

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. //公用
  2. GoUse(function () {
  3. // 定义一个名为 button-counter 的新组件
  4. document.title = "govue";
  5. document
  6. .getElementsByName("keywords")[0]
  7. .setAttribute("content", "govue,服务端渲染,ssr");
  8. Vue.component('my-title', {
  9. template: '<h1 id="title">govue</h1>'
  10. });
  11. });
  12. //分页面
  13. GoUseRegistered("index", function (query) {
  14. console.log("query:", JSON.stringify(query));
  15. new Vue({
  16. el: "#app",
  17. data: {
  18. "desc": "基础golang开发的一套vue服务端渲染方案"
  19. },
  20. });
  21. });