{"id":99,"date":"2021-01-18T20:23:02","date_gmt":"2021-01-18T12:23:02","guid":{"rendered":"http:\/\/gjweb.top\/?p=99"},"modified":"2021-01-18T20:23:03","modified_gmt":"2021-01-18T12:23:03","slug":"vue-router","status":"publish","type":"post","link":"https:\/\/gjweb.top\/?p=99","title":{"rendered":"Vue-router"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">\u7ec4\u4ef6\u4e4b\u95f4\u7684\u8df3\u8f6c<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/ \u65b9\u6cd5\u4e8c\n&lt;router-link to=\"\/src\"&gt;&lt;\/router-link&gt;\n\/\/ \u65b9\u6cd5\u4e09\nthis.$router.push(\"\/src\")<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">\u7ec4\u4ef6\u4e4b\u95f4\u8df3\u8f6c(\u4f20\u9012\u53c2\u6570)\u2014\u2014\u52a8\u6001\u4f20\u503c<\/h3>\n\n\n\n<ul class=\"wp-block-list\"><li>\u660e\u786e\u53d1\u9001\u65b9\u6cd5\u548c\u63a5\u53d7\u65b9<\/li><li>\u914d\u7f6e\u63a5\u53d7\u65b9\u8def\u7531\u5730\u5740<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>{path:\"\/src\/:name\",component:\"\"}<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>\u63a5\u6536\u65b9\u6cd5\u83b7\u53d6\u4f20\u9012\u6570<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>this.$router.params.name<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>\u8df3\u8f6c\u65f6,\u4f20\u503c3\u79cd:<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/ \u65b9\u6848\u4e00\nthis.$router.push(\"\/main\/\u53c2\u6570\");\n\/\/ \u65b9\u6848\u4e8c\n&lt;router-link to=\"\/src\/\u53c2\u6570\">;\n\/\/ \u65b9\u6848\u4e09\nthis.$router.push({\r\n    name:'\u8def\u7531\u540d\u5b57',\r\n    params:{\u53c2\u6570}\r\n})<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">\u9759\u6001\u4f20\u503c<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/ router.js\n{path:\"\",component:\"\",props:{key:\"value\"}}\n\/\/ \u83b7\u53d6\nprops:{\n    key:{\n        type:\"String\",\n        default:\"\"\n    }\n}<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\u8def\u7531\u8bbe\u7f6e\u9ad8\u7ea7\u7528\u6cd5<\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li>redirect \u91cd\u5b9a\u5411<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>{path:\"\/productList\",redirect:\"list\"}<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>path:&#8221;*&#8221; \u5f02\u5e38\u5904\u7406<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>{path:\"*\",component:NotFound}<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\u8def\u7531\u5d4c\u5957<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>export default new Router({\n    routes: &#91;\n        {\n          path: '\/index',\n          name: 'Index',\n          component: Index,\n          children:&#91;\n              {\n                  path: '',\n                  name: '',\n                  meta: {},\n                  component:\n              }\n          ]\n    ]\n})<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\u8def\u7531\u61d2\u52a0\u8f7d<\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li>\u8def\u7531\u61d2\u52a0\u8f7d\uff0cvue\u4e2d\u914d\u5408webpack<\/li><li>\u5982\u679c\u4e0d\u653epath\u8def\u7531\uff0c\u7ec4\u4ef6\u5c06\u4e0d\u4f1a\u88ab\u52a0\u8f7d<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>export default new Router({\n    mode:'history'\/'hash',\n    routes:&#91;\n        {\n            path:'',\n            component:()=&gt;import('\u7ec4\u4ef6\u7684URl')\n        }\n    ]\n})<\/code><\/pre>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u7ec4\u4ef6\u4e4b\u95f4\u7684\u8df3\u8f6c \u7ec4\u4ef6\u4e4b\u95f4\u8df3\u8f6c(\u4f20\u9012\u53c2\u6570)\u2014\u2014\u52a8\u6001\u4f20\u503c \u660e\u786e\u53d1\u9001\u65b9\u6cd5\u548c\u63a5\u53d7\u65b9 \u914d\u7f6e\u63a5\u53d7\u65b9\u8def\u7531\u5730\u5740 \u63a5\u6536\u65b9\u6cd5\u83b7\u53d6\u4f20 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[10],"tags":[],"class_list":["post-99","post","type-post","status-publish","format-standard","hentry","category-vue"],"_links":{"self":[{"href":"https:\/\/gjweb.top\/index.php?rest_route=\/wp\/v2\/posts\/99","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/gjweb.top\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/gjweb.top\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/gjweb.top\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/gjweb.top\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=99"}],"version-history":[{"count":0,"href":"https:\/\/gjweb.top\/index.php?rest_route=\/wp\/v2\/posts\/99\/revisions"}],"wp:attachment":[{"href":"https:\/\/gjweb.top\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=99"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/gjweb.top\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=99"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/gjweb.top\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=99"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}