App.vue 869 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <template>
  2. <div id="app">
  3. <!-- <Form></Form> -->
  4. <SearchForm/>
  5. </div>
  6. </template>
  7. <script>
  8. import TablePage from './components/TablePage/example/list1'
  9. import Form from './components/Form/example/index'
  10. import SearchForm from './components/SearchForm/example/list1'
  11. export default {
  12. name: 'app',
  13. components:{
  14. TablePage,
  15. Form,
  16. SearchForm
  17. },
  18. data () {
  19. return {
  20. msg: 'Welcome to Your Vue.js App'
  21. }
  22. },
  23. methods:{
  24. }
  25. }
  26. </script>
  27. <style lang="scss">
  28. #app {
  29. font-family: 'Avenir', Helvetica, Arial, sans-serif;
  30. -webkit-font-smoothing: antialiased;
  31. -moz-osx-font-smoothing: grayscale;
  32. text-align: center;
  33. color: #2c3e50;
  34. margin-top: 60px;
  35. }
  36. h1, h2 {
  37. font-weight: normal;
  38. }
  39. ul {
  40. list-style-type: none;
  41. padding: 0;
  42. }
  43. li {
  44. display: inline-block;
  45. margin: 0 10px;
  46. }
  47. a {
  48. color: #42b983;
  49. }
  50. </style>