123456789101112131415161718192021 |
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <script>
- export default {
- name: 'App'
- }
- </script>
- <style rel="stylesheet/scss" lang="scss">
- .sy-content {
- margin: 15px;
- }
- .btn_custom_cancel {
- float: right;
- margin-left: 10px !important;
- }
- </style>
|