This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const express = require("express") | |
const app = express() | |
module.exports = { | |
path: "/server", | |
handler: app, | |
} | |
app.get("/category", (req, res) => { | |
const mysql = require("mysql") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<header class="header"> | |
header | |
</header> | |
</template> | |
<script> | |
if (process.browser) { | |
var lastST = $(window).scrollTop(); //初期スクロール位置の取得 | |
function hideGlobalNav(e) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div class="Map-box"> | |
<client-only> | |
<GmapMap | |
class="Map" | |
:center="map.center" | |
:zoom="map.zoom" | |
:options="options" | |
map-type-id="roadmap" | |
> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div> | |
<p class="fadeInUp"> | |
smooth-fade-in-up | |
</p> | |
</div> | |
</template> | |
<script> | |
export default { | |
mounted() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div> | |
<div> | |
<div> | |
<h2> | |
お問い合わせフォーム | |
</h2> | |
<p v-if="!check"> | |
<span class="check"></span>必須項目 | |
</p> |