Skip to content

Instantly share code, notes, and snippets.

@shijiezhou1
Created October 6, 2020 21:43
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 shijiezhou1/5c52d393c9911df5b2794444fb519477 to your computer and use it in GitHub Desktop.
Save shijiezhou1/5c52d393c9911df5b2794444fb519477 to your computer and use it in GitHub Desktop.
Vue3-todo
<template>
<h1>Vue 3 Todo App:</h1>
<Container />
</template>
<script>
import Container from './components/Container';
export default {
name: 'App',
components: {
Container
}
}
</script>
<style>
#app {
font-family: Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment