Skip to content

Instantly share code, notes, and snippets.

@Tenderfeel
Created March 24, 2019 14:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tenderfeel/c99ae51b879922dd44594aca044d0f13 to your computer and use it in GitHub Desktop.
Save Tenderfeel/c99ae51b879922dd44594aca044d0f13 to your computer and use it in GitHub Desktop.
[Vue] ページングコンポーネントの作り方とか 1
<template>
<div id="app">
</div>
</template>
<script>
export default {
name: "App",
components: {},
};
</script>
<style>
#app {
font-family: "Avenir", Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #2c3e50;
margin-top: 60px;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment