123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <template>
- <div id="app">
- <!-- <Form></Form> -->
- <SearchForm/>
- </div>
- </template>
- <script>
- import TablePage from './components/TablePage/example/list1'
- import Form from './components/Form/example/index'
- import SearchForm from './components/SearchForm/example/list1'
- export default {
- name: 'app',
- components:{
- TablePage,
- Form,
- SearchForm
- },
- data () {
- return {
- msg: 'Welcome to Your Vue.js App'
- }
- },
- methods:{
-
- }
- }
- </script>
- <style lang="scss">
- #app {
- font-family: 'Avenir', Helvetica, Arial, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- text-align: center;
- color: #2c3e50;
- margin-top: 60px;
- }
- h1, h2 {
- font-weight: normal;
- }
- ul {
- list-style-type: none;
- padding: 0;
- }
- li {
- display: inline-block;
- margin: 0 10px;
- }
- a {
- color: #42b983;
- }
- </style>
|