{"id":107,"date":"2018-12-02T17:39:49","date_gmt":"2018-12-02T08:39:49","guid":{"rendered":"http:\/\/snow-cat.net\/?p=107"},"modified":"2019-04-29T16:53:47","modified_gmt":"2019-04-29T07:53:47","slug":"vue-js%e3%81%ae%e3%83%a1%e3%82%bd%e3%83%83%e3%83%89%e3%81%a8api","status":"publish","type":"post","link":"http:\/\/snow-cat.net\/?p=107","title":{"rendered":"vue.js\u306e\u30e1\u30bd\u30c3\u30c9\u3068API"},"content":{"rendered":"<p>\u3053\u3093\u306b\u3061\u306f\u3001\u3086\u304d\u306d\u3053\u3067\u3059\u3002<\/p>\n<p>\u6700\u8fd1Vue.js\u3092\u5c0e\u5165\u3057\u3066\u958b\u767a\u3092\u9032\u3081\u3066\u3044\u308b\u306e\u3067\u3001\u6280\u8853\u3092\u307e\u3068\u3081\u3066\u3044\u304d\u305f\u3044\u3068\u601d\u3044\u307e\u3059\u3002<\/p>\n<p>\u4eca\u56de\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306f\u3053\u3093\u306a\u611f\u3058\u3002<\/p>\n<pre class=\"lang:default decode:true\" title=\"vue.js\">var id = \"test_user\";\r\nvar baseuri = \"https:\/\/api-server.jp\";\r\nvar url = baseuri + \"\/view\/porsonal\" + \"&amp;id=\" + id;\r\n\r\nvar mv = new Vue({\r\n\u3000el:'#vue',\r\n\u3000data:{\r\n\u3000\u3000infos:void(0)\r\n\u3000}\r\n\u3000,\r\n\u3000created: function(){\r\n\u3000\u3000axios.get(url).then((response) =&gt; {\r\n\u3000\u3000this.info = response.info;\r\n\u3000})\r\n\u3000.catch( (response) =&gt; {\r\n\u3000\u3000console.log(response);\r\n\u3000\u3000});\r\n\u3000},\r\n\u3000methods:{\r\n\u3000\u3000date_normalise(date){\r\n\u3000\u3000\u3000return date.substr(0,10);\r\n\u3000\u3000}\r\n\u3000},\r\n})<\/pre>\n<pre class=\"lang:default decode:true \" title=\"vue.html\">&lt;script src=\"https:\/\/unpkg.com\/vue@2.5.17\"&gt;&lt;\/script&gt;&lt;br&gt;\r\n\r\n&lt;script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/axios\/0.18.0\/axios.js\"&gt;&lt;\/script&gt;\r\n\r\n&lt;div class=\"app\"&gt;\r\n&lt;section&gt;\r\n\u3000&lt;h2 class=\"title\"&gt;infomation&lt;\/h2&gt;\r\n\u3000&lt;ul class=\"info\"&gt;\r\n\u3000\u3000\u3000&lt;li v-for=\"info in infos\"&gt;\r\n\u3000\u3000\u3000\u3000&lt;dl&gt;\r\n\u3000\u3000\u3000\u3000\u3000&lt;dd&gt;\r\n\u3000\u3000\u3000\u3000\u3000\u3000&lt;h3&gt;{{ info.name }}&lt;\/h3&gt;\r\n\u3000\u3000\u3000\u3000\u3000\u3000&lt;span class=\"date\"&gt;{{ date_normalise(info.regist_date) }}&lt;\/span&gt;\r\n\u3000\u3000\u3000\u3000\u3000\u3000&lt;span class=\"date\"&gt;{{ info.gender }}&lt;\/span&gt;\r\n\u3000\u3000\u3000\u3000\u3000&lt;\/dd&gt;\r\n\u3000\u3000\u3000\u3000&lt;\/dl&gt;\r\n\u3000\u3000\u3000\u3000&lt;\/a&gt;\r\n\u3000\u3000&lt;\/li&gt;\r\n\u3000&lt;\/ul&gt;\r\n&lt;\/section&gt;\r\n&lt;\/div&gt;\r\n\r\n&lt;script src=\"\/js\/vue.js\" type=\"text\/javascript\"&gt;&lt;\/script&gt;<\/pre>\n<p>\u89e3\u8aac\u3057\u3066\u3044\u304d\u307e\u3059\u3002<\/p>\n<h2>Vue.js<\/h2>\n<div id=\"crayon-5c03955d39bf7409440004-5\" class=\"crayon-line\">\n<pre class=\"lang:default decode:true \">new Vue({\r\n\u3000el:'#vue',\r\n\u3000data:{\r\n\u3000\u3000infos:void(0)\r\n}<\/pre>\n<p>\u3053\u306e\u90e8\u5206\u304cVue.js\u306e\u30b3\u30a2\uff1f\u7684\u306a\u3068\u3053\u308d\u3067\u3059\u3002<\/p>\n<p>data\u306e\u90e8\u5206\u3067\u63cf\u753b\u3059\u308b\u30c7\u30fc\u30bf\u3092\u5b9a\u7fa9\u3059\u308b\u306e\u3067\u3059\u304c\u3001\u4eca\u56de\u306fAPI\u3067\u30c7\u30fc\u30bf\u3092\u53d6\u3063\u3066\u304f\u308b\u305f\u3081\u3001\u3053\u306e\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u307e\u3059\u3002<\/p>\n<pre class=\"lang:default decode:true\">\u3000created: function(){\r\n \u3000\u3000axios.get(url).then(\r\n    (response) =&gt; { \u3000\u3000this.info = response.info;\r\n  }) \u3000\r\n\u3000\u3000\u3000\u3000.catch( (response) =&gt; {\r\n    console.log(response);\r\n  });\r\n},<\/pre>\n<p>\u6b21\u306b\u3053\u306e\u90e8\u5206\u3067\u3059\u3002<\/p>\n<p>created\u306fvue.js\u304c\u547c\u3070\u308c\u3066HTML\u306b\u30c7\u30fc\u30bf\u3092\u6e21\u3059\u524d\u306b\u30c7\u30fc\u30bf\u3092\u6574\u5f62\u3059\u308b\u90e8\u5206\u3067\u3059\u3002<\/p>\n<p>\u30ad\u30e3\u30c3\u30b7\u30e5\u3068\u3057\u3066\u4fdd\u6301\u3055\u308c\u3066\u6e21\u3055\u308c\u308b\u3088\u3046\u306a\u306e\u3067\u73fe\u5728\u306f\u3042\u307e\u308a\u91cd\u3044\u51e6\u7406\u306f\u66f8\u304d\u305f\u304f\u306a\u3044\u5370\u8c61\u3067\u3059\u3002<\/p>\n<p>\u305d\u3057\u3066\u3001axios\u3067\u3059\u304c\u3001\u3053\u3061\u3089\u306fjQuery\u3067\u3044\u3046$.ajax\u3067\u3059\u3002<\/p>\n<p>html\u30d5\u30a1\u30a4\u30eb\u3067\u3042\u3089\u304b\u3058\u3081\u8aad\u3093\u3067\u304a\u3044\u3066\u3001\u3053\u306e\u90e8\u5206\u3067API\u3092\u53e9\u304d\u307e\u3059\u3002<\/p>\n<p>\u5e30\u3063\u3066\u304d\u305fresponse\u3092\u5148\u307b\u3069\u306edata\u306b\u683c\u7d0d\u3057\u307e\u3059\u3002<\/p>\n<\/div>\n<div>\n<pre class=\"lang:default decode:true\">methods:{\r\n\u3000date_normalise(date){\r\n\u3000\u3000return date.substr(0,10);\r\n }\r\n},<\/pre>\n<p>\u305d\u3057\u3066method\u3067\u3059\u304c\u3001\u3053\u3061\u3089\u306f\u3042\u3089\u304b\u3058\u3081\u5b9a\u7fa9\u3057\u3066\u304a\u3044\u3066\u3001HTML\u5185\u306e\u95a2\u6570\u304c\u547c\u3070\u308c\u3066\u3044\u308b\u90e8\u5206\u3067\u521d\u3081\u3066\u51e6\u7406\u304c\u5b9f\u884c\u3055\u308c\u307e\u3059\u3002<\/p>\n<\/div>\n<h2>HTML<\/h2>\n<div>HTML\u5074\u3067\u3059\u304c\u4ee5\u4e0b\u306e\u90e8\u5206\u3067\u914d\u5217\u3092\u30eb\u30fc\u30d7\u3057\u307e\u3059\u3002<\/div>\n<div>\n<pre class=\"lang:default decode:true\">&lt;li v-for=\"info in infos\"&gt;<\/pre>\n<p>\u305d\u3057\u3066info\u306e\u30c7\u30fc\u30bf\u3092\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u63cf\u753b\u3057\u3066\u3044\u304d\u307e\u3059\u3002<\/p>\n<pre class=\"lang:default decode:true\">&lt;h3&gt;{{ info.name }}&lt;\/h3&gt;\r\n\r\n&lt;span class=\"date\"&gt;{{ date_normalise(info.regist_date) }}&lt;\/span&gt;\r\n\r\n\u3000&lt;span class=\"date\"&gt;{{ info.gender }}&lt;\/span&gt;<\/pre>\n<p>date_normalise\u3067\u5148\u307b\u3069\u5b9a\u7fa9\u3057\u305fvue.js\u306e\u95a2\u6570\u3092\u547c\u3073\u51fa\u3057\u3066\u3044\u308b\u304b\u3093\u3058\u3067\u3059\u3002<\/p>\n<p>&nbsp;<\/p>\n<p>\u3042\u3068\u3001\u30cf\u30de\u3063\u305f\u70b9\u306fCDN\u3067\u30bd\u30fc\u30b9\u3092\u8aad\u307f\u8fbc\u3080\u9806\u756a\u3067\u3059\u306d\u3002<\/p>\n<p>\u5b9f\u884c\u3059\u308bvue\u30d5\u30a1\u30a4\u30eb\u306f\u30c7\u30fc\u30bf\u3092\u57cb\u3081\u8fbc\u3080\u7b87\u6240\u306e\u5f8c\u306b\u3057\u306a\u3044\u3068\u8a8d\u8b58\u3055\u308c\u306a\u3044\u3067\u3059\u3002<\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>\u3053\u3093\u306b\u3061\u306f\u3001\u3086\u304d\u306d\u3053\u3067\u3059\u3002 \u6700\u8fd1Vue.js\u3092\u5c0e\u5165\u3057\u3066\u958b\u767a\u3092\u9032\u3081\u3066\u3044\u308b\u306e\u3067\u3001\u6280\u8853\u3092\u307e\u3068\u3081\u3066\u3044\u304d\u305f\u3044\u3068 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[11],"tags":[],"class_list":["post-107","post","type-post","status-publish","format-standard","hentry","category-javascript"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"hiro\"\/>\n\t<meta name=\"keywords\" content=\"javascript\" \/>\n\t<link rel=\"canonical\" href=\"http:\/\/snow-cat.net\/?p=107\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"ja_JP\" \/>\n\t\t<meta property=\"og:site_name\" content=\"\u3086\u304d\u306d\u3053 | \u90fd\u5185\u3067\u50cd\u3044\u3066\u3044\u308b\u6587\u7cfbSE\u3067\u3059\u3002\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"vue.js\u306e\u30e1\u30bd\u30c3\u30c9\u3068API | \u3086\u304d\u306d\u3053\" \/>\n\t\t<meta property=\"og:url\" content=\"http:\/\/snow-cat.net\/?p=107\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2018-12-02T08:39:49+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2019-04-29T07:53:47+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"vue.js\u306e\u30e1\u30bd\u30c3\u30c9\u3068API | \u3086\u304d\u306d\u3053\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"http:\\\/\\\/snow-cat.net\\\/?p=107#article\",\"name\":\"vue.js\\u306e\\u30e1\\u30bd\\u30c3\\u30c9\\u3068API | \\u3086\\u304d\\u306d\\u3053\",\"headline\":\"vue.js\\u306e\\u30e1\\u30bd\\u30c3\\u30c9\\u3068API\",\"author\":{\"@id\":\"http:\\\/\\\/snow-cat.net\\\/?author=1#author\"},\"publisher\":{\"@id\":\"http:\\\/\\\/snow-cat.net\\\/#organization\"},\"datePublished\":\"2018-12-02T17:39:49+09:00\",\"dateModified\":\"2019-04-29T16:53:47+09:00\",\"inLanguage\":\"ja\",\"mainEntityOfPage\":{\"@id\":\"http:\\\/\\\/snow-cat.net\\\/?p=107#webpage\"},\"isPartOf\":{\"@id\":\"http:\\\/\\\/snow-cat.net\\\/?p=107#webpage\"},\"articleSection\":\"JavaScript\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\\\/\\\/snow-cat.net\\\/?p=107#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/snow-cat.net#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\\\/\\\/snow-cat.net\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/snow-cat.net\\\/?cat=7#listItem\",\"name\":\"\\u6280\\u8853\"}},{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/snow-cat.net\\\/?cat=7#listItem\",\"position\":2,\"name\":\"\\u6280\\u8853\",\"item\":\"http:\\\/\\\/snow-cat.net\\\/?cat=7\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/snow-cat.net\\\/?cat=11#listItem\",\"name\":\"JavaScript\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/snow-cat.net#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/snow-cat.net\\\/?cat=11#listItem\",\"position\":3,\"name\":\"JavaScript\",\"item\":\"http:\\\/\\\/snow-cat.net\\\/?cat=11\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/snow-cat.net\\\/?p=107#listItem\",\"name\":\"vue.js\\u306e\\u30e1\\u30bd\\u30c3\\u30c9\\u3068API\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/snow-cat.net\\\/?cat=7#listItem\",\"name\":\"\\u6280\\u8853\"}},{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/snow-cat.net\\\/?p=107#listItem\",\"position\":4,\"name\":\"vue.js\\u306e\\u30e1\\u30bd\\u30c3\\u30c9\\u3068API\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/snow-cat.net\\\/?cat=11#listItem\",\"name\":\"JavaScript\"}}]},{\"@type\":\"Organization\",\"@id\":\"http:\\\/\\\/snow-cat.net\\\/#organization\",\"name\":\"\\u3086\\u304d\\u306d\\u3053\",\"description\":\"\\u90fd\\u5185\\u3067\\u50cd\\u3044\\u3066\\u3044\\u308b\\u6587\\u7cfbSE\\u3067\\u3059\\u3002\",\"url\":\"http:\\\/\\\/snow-cat.net\\\/\"},{\"@type\":\"Person\",\"@id\":\"http:\\\/\\\/snow-cat.net\\\/?author=1#author\",\"url\":\"http:\\\/\\\/snow-cat.net\\\/?author=1\",\"name\":\"hiro\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"http:\\\/\\\/snow-cat.net\\\/?p=107#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0266890b4dc540ca6de4dffdc44dcc19158ff74388ab5c362eb814f5ba8b5816?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"hiro\"}},{\"@type\":\"WebPage\",\"@id\":\"http:\\\/\\\/snow-cat.net\\\/?p=107#webpage\",\"url\":\"http:\\\/\\\/snow-cat.net\\\/?p=107\",\"name\":\"vue.js\\u306e\\u30e1\\u30bd\\u30c3\\u30c9\\u3068API | \\u3086\\u304d\\u306d\\u3053\",\"inLanguage\":\"ja\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/snow-cat.net\\\/#website\"},\"breadcrumb\":{\"@id\":\"http:\\\/\\\/snow-cat.net\\\/?p=107#breadcrumblist\"},\"author\":{\"@id\":\"http:\\\/\\\/snow-cat.net\\\/?author=1#author\"},\"creator\":{\"@id\":\"http:\\\/\\\/snow-cat.net\\\/?author=1#author\"},\"datePublished\":\"2018-12-02T17:39:49+09:00\",\"dateModified\":\"2019-04-29T16:53:47+09:00\"},{\"@type\":\"WebSite\",\"@id\":\"http:\\\/\\\/snow-cat.net\\\/#website\",\"url\":\"http:\\\/\\\/snow-cat.net\\\/\",\"name\":\"\\u3086\\u304d\\u306d\\u3053\",\"description\":\"\\u90fd\\u5185\\u3067\\u50cd\\u3044\\u3066\\u3044\\u308b\\u6587\\u7cfbSE\\u3067\\u3059\\u3002\",\"inLanguage\":\"ja\",\"publisher\":{\"@id\":\"http:\\\/\\\/snow-cat.net\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"vue.js\u306e\u30e1\u30bd\u30c3\u30c9\u3068API | \u3086\u304d\u306d\u3053","description":"","canonical_url":"http:\/\/snow-cat.net\/?p=107","robots":"max-image-preview:large","keywords":"javascript","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/snow-cat.net\/?p=107#article","name":"vue.js\u306e\u30e1\u30bd\u30c3\u30c9\u3068API | \u3086\u304d\u306d\u3053","headline":"vue.js\u306e\u30e1\u30bd\u30c3\u30c9\u3068API","author":{"@id":"http:\/\/snow-cat.net\/?author=1#author"},"publisher":{"@id":"http:\/\/snow-cat.net\/#organization"},"datePublished":"2018-12-02T17:39:49+09:00","dateModified":"2019-04-29T16:53:47+09:00","inLanguage":"ja","mainEntityOfPage":{"@id":"http:\/\/snow-cat.net\/?p=107#webpage"},"isPartOf":{"@id":"http:\/\/snow-cat.net\/?p=107#webpage"},"articleSection":"JavaScript"},{"@type":"BreadcrumbList","@id":"http:\/\/snow-cat.net\/?p=107#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"http:\/\/snow-cat.net#listItem","position":1,"name":"Home","item":"http:\/\/snow-cat.net","nextItem":{"@type":"ListItem","@id":"http:\/\/snow-cat.net\/?cat=7#listItem","name":"\u6280\u8853"}},{"@type":"ListItem","@id":"http:\/\/snow-cat.net\/?cat=7#listItem","position":2,"name":"\u6280\u8853","item":"http:\/\/snow-cat.net\/?cat=7","nextItem":{"@type":"ListItem","@id":"http:\/\/snow-cat.net\/?cat=11#listItem","name":"JavaScript"},"previousItem":{"@type":"ListItem","@id":"http:\/\/snow-cat.net#listItem","name":"Home"}},{"@type":"ListItem","@id":"http:\/\/snow-cat.net\/?cat=11#listItem","position":3,"name":"JavaScript","item":"http:\/\/snow-cat.net\/?cat=11","nextItem":{"@type":"ListItem","@id":"http:\/\/snow-cat.net\/?p=107#listItem","name":"vue.js\u306e\u30e1\u30bd\u30c3\u30c9\u3068API"},"previousItem":{"@type":"ListItem","@id":"http:\/\/snow-cat.net\/?cat=7#listItem","name":"\u6280\u8853"}},{"@type":"ListItem","@id":"http:\/\/snow-cat.net\/?p=107#listItem","position":4,"name":"vue.js\u306e\u30e1\u30bd\u30c3\u30c9\u3068API","previousItem":{"@type":"ListItem","@id":"http:\/\/snow-cat.net\/?cat=11#listItem","name":"JavaScript"}}]},{"@type":"Organization","@id":"http:\/\/snow-cat.net\/#organization","name":"\u3086\u304d\u306d\u3053","description":"\u90fd\u5185\u3067\u50cd\u3044\u3066\u3044\u308b\u6587\u7cfbSE\u3067\u3059\u3002","url":"http:\/\/snow-cat.net\/"},{"@type":"Person","@id":"http:\/\/snow-cat.net\/?author=1#author","url":"http:\/\/snow-cat.net\/?author=1","name":"hiro","image":{"@type":"ImageObject","@id":"http:\/\/snow-cat.net\/?p=107#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/0266890b4dc540ca6de4dffdc44dcc19158ff74388ab5c362eb814f5ba8b5816?s=96&d=mm&r=g","width":96,"height":96,"caption":"hiro"}},{"@type":"WebPage","@id":"http:\/\/snow-cat.net\/?p=107#webpage","url":"http:\/\/snow-cat.net\/?p=107","name":"vue.js\u306e\u30e1\u30bd\u30c3\u30c9\u3068API | \u3086\u304d\u306d\u3053","inLanguage":"ja","isPartOf":{"@id":"http:\/\/snow-cat.net\/#website"},"breadcrumb":{"@id":"http:\/\/snow-cat.net\/?p=107#breadcrumblist"},"author":{"@id":"http:\/\/snow-cat.net\/?author=1#author"},"creator":{"@id":"http:\/\/snow-cat.net\/?author=1#author"},"datePublished":"2018-12-02T17:39:49+09:00","dateModified":"2019-04-29T16:53:47+09:00"},{"@type":"WebSite","@id":"http:\/\/snow-cat.net\/#website","url":"http:\/\/snow-cat.net\/","name":"\u3086\u304d\u306d\u3053","description":"\u90fd\u5185\u3067\u50cd\u3044\u3066\u3044\u308b\u6587\u7cfbSE\u3067\u3059\u3002","inLanguage":"ja","publisher":{"@id":"http:\/\/snow-cat.net\/#organization"}}]},"og:locale":"ja_JP","og:site_name":"\u3086\u304d\u306d\u3053 | \u90fd\u5185\u3067\u50cd\u3044\u3066\u3044\u308b\u6587\u7cfbSE\u3067\u3059\u3002","og:type":"article","og:title":"vue.js\u306e\u30e1\u30bd\u30c3\u30c9\u3068API | \u3086\u304d\u306d\u3053","og:url":"http:\/\/snow-cat.net\/?p=107","article:published_time":"2018-12-02T08:39:49+00:00","article:modified_time":"2019-04-29T07:53:47+00:00","twitter:card":"summary","twitter:title":"vue.js\u306e\u30e1\u30bd\u30c3\u30c9\u3068API | \u3086\u304d\u306d\u3053"},"aioseo_meta_data":{"post_id":"107","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[],"defaultGraph":"","defaultPostTypeGraph":""},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2020-12-21 04:05:55","updated":"2025-06-04 04:39:29","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"http:\/\/snow-cat.net\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"http:\/\/snow-cat.net\/?cat=7\" title=\"\u6280\u8853\">\u6280\u8853<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"http:\/\/snow-cat.net\/?cat=11\" title=\"JavaScript\">JavaScript<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tvue.js\u306e\u30e1\u30bd\u30c3\u30c9\u3068API\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"http:\/\/snow-cat.net"},{"label":"\u6280\u8853","link":"http:\/\/snow-cat.net\/?cat=7"},{"label":"JavaScript","link":"http:\/\/snow-cat.net\/?cat=11"},{"label":"vue.js\u306e\u30e1\u30bd\u30c3\u30c9\u3068API","link":"http:\/\/snow-cat.net\/?p=107"}],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/pattVc-1J","jetpack-related-posts":[{"id":191,"url":"http:\/\/snow-cat.net\/?p=191","url_meta":{"origin":107,"position":0},"title":"vue.js\u306eSPA\u958b\u767a1","author":"hiro","date":"2019\u5e744\u670830\u65e5","format":false,"excerpt":"\u3053\u3093\u306b\u3061\u306f\u3001\u3086\u304d\u306d\u3053\u3067\u3059\u3002 \u73fe\u5728\u3001SPA\u3067\u500b\u4eba\u7684\u306a\u958b\u767a\u3092\u9032\u3081\u3066\u3044\u307e\u3059\u304c\u3001\u5b66\u3076\u3053\u3068\u304c\u591a\u3044\u306a\u3068\u601d\u3063\u305f\u306e\u3067\u2026","rel":"","context":"\u305d\u306e\u4ed6\u3082\u308d\u3082\u308d","block_context":{"text":"\u305d\u306e\u4ed6\u3082\u308d\u3082\u308d","link":"http:\/\/snow-cat.net\/?cat=1"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/snow-cat.net\/wp-content\/uploads\/2019\/04\/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88-2019-04-30-3.48.02-300x264.png?resize=350%2C200","width":350,"height":200},"classes":[]},{"id":70,"url":"http:\/\/snow-cat.net\/?p=70","url_meta":{"origin":107,"position":1},"title":"vue.js\u3067[Vue warn]: Cannot find element:\u304c\u51fa\u308b\u5bfe\u51e6","author":"hiro","date":"2018\u5e7411\u670825\u65e5","format":false,"excerpt":"\u3053\u3093\u306b\u3061\u306f\u3001\u3086\u304d\u306d\u3053\u3067\u3059\u3002 \u6700\u8fd1vue.js\u3092\u5c0e\u5165\u3057\u3088\u3046\u3068\u52c9\u5f37\u4e2d\u306a\u306e\u3067\u3059\u304c\u3001\u82e6\u6226\u3057\u305f\u30a8\u30e9\u30fc\u304c\u3042\u3063\u305f\u306e\u2026","rel":"","context":"JavaScript","block_context":{"text":"JavaScript","link":"http:\/\/snow-cat.net\/?cat=11"},"img":{"alt_text":"","src":"\/\/ir-jp.amazon-adsystem.com\/e\/ir?t=snowcat043-22&l=am2&o=9&a=B07J6FP6NQ","width":350,"height":200},"classes":[]},{"id":246,"url":"http:\/\/snow-cat.net\/?p=246","url_meta":{"origin":107,"position":2},"title":"vue.js\u3092\u4e00\u304b\u3089\u8a2d\u5b9a\u3059\u308b","author":"hiro","date":"2019\u5e746\u670830\u65e5","format":false,"excerpt":"\u3053\u3093\u306b\u3061\u308f\u3001\u3086\u304d\u306d\u3053\u3067\u3059\u3002 \u6700\u8fd1vue.js\u306e\u74b0\u5883\u69cb\u7bc9\u3092\u884c\u306a\u3063\u3066\u3044\u305f\u306e\u3067\u9806\u756a\u3092\u307e\u3068\u3081\u3088\u3046\u3068\u601d\u3044\u307e\u3059\u3002\u2026","rel":"","context":"\u305d\u306e\u4ed6\u3082\u308d\u3082\u308d","block_context":{"text":"\u305d\u306e\u4ed6\u3082\u308d\u3082\u308d","link":"http:\/\/snow-cat.net\/?cat=1"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":993,"url":"http:\/\/snow-cat.net\/?p=993","url_meta":{"origin":107,"position":3},"title":"Laravel8\u306bvue.js\u3092\u8a2d\u5b9a\u3059\u308b\u65b9\u6cd5","author":"hiro","date":"2021\u5e745\u67083\u65e5","format":false,"excerpt":"\u73fe\u5728\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3092\u9032\u3081\u3066\u3044\u308b\u306e\u3067\u3059\u304c\u3001vue\u3092\u5c0e\u5165\u3059\u308b\u65b9\u6cd5\u306f\u666e\u901a\u306bSPA\u3067\u4f5c\u6210\u3059\u308b\u65b9\u6cd5\u3068\u306f\u82e5\u5e72\u7570\u306a\u308b\u2026","rel":"","context":"JavaScript","block_context":{"text":"JavaScript","link":"http:\/\/snow-cat.net\/?cat=11"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":171,"url":"http:\/\/snow-cat.net\/?p=171","url_meta":{"origin":107,"position":4},"title":"vue.js\u3067function\u3092\u4f7f\u308f\u306a\u3044\u3067\u66f8\u304f\u65b9\u6cd5(ES6\u5bfe\u5fdc)","author":"hiro","date":"2019\u5e744\u670829\u65e5","format":false,"excerpt":"\u3053\u3093\u306b\u3061\u308f\u3001\u3086\u304d\u306d\u3053\u3067\u3059\u3002 \u793e\u5185\u3067\u3082\u3063\u3068\u30e2\u30c0\u30f3\u306a\u958b\u767a\u30b9\u30bf\u30a4\u30eb\u3092\u53d6\u308a\u5165\u308c\u3088\u3046\u305c\u3063\u3066\u3053\u3068\u3067\u3001JavaSc\u2026","rel":"","context":"JavaScript","block_context":{"text":"JavaScript","link":"http:\/\/snow-cat.net\/?cat=11"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":447,"url":"http:\/\/snow-cat.net\/?p=447","url_meta":{"origin":107,"position":5},"title":"\u30dd\u30fc\u30c8\u30d5\u30a9\u30ea\u30aa\u3067\u4f7f\u7528\u3057\u305f\u6280\u8853","author":"hiro","date":"2020\u5e744\u670816\u65e5","format":false,"excerpt":"\u6628\u65e5\u30dd\u30fc\u30c8\u30d5\u30a9\u30ea\u30aa\u3092\u4f5c\u6210\u3057\u307e\u3057\u305f\u3002 \u73fe\u5728\u8ee2\u8077\u4e2d\u306a\u306e\u3067\u4f5c\u3063\u305f\u306e\u3082\u3042\u308a\u307e\u3059\u304c\u3001\u3082\u3068\u3082\u3068SPA\u3092\u4f5c\u308a\u305f\u304b\u3063\u2026","rel":"","context":"\u305d\u306e\u4ed6\u3082\u308d\u3082\u308d","block_context":{"text":"\u305d\u306e\u4ed6\u3082\u308d\u3082\u308d","link":"http:\/\/snow-cat.net\/?cat=1"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"_links":{"self":[{"href":"http:\/\/snow-cat.net\/index.php?rest_route=\/wp\/v2\/posts\/107","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/snow-cat.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/snow-cat.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/snow-cat.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/snow-cat.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=107"}],"version-history":[{"count":11,"href":"http:\/\/snow-cat.net\/index.php?rest_route=\/wp\/v2\/posts\/107\/revisions"}],"predecessor-version":[{"id":118,"href":"http:\/\/snow-cat.net\/index.php?rest_route=\/wp\/v2\/posts\/107\/revisions\/118"}],"wp:attachment":[{"href":"http:\/\/snow-cat.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=107"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/snow-cat.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=107"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/snow-cat.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=107"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}