1234567891011121314151617181920212223242526272829 |
- <template>
- <div class="app">
- Hello world! :)
- </div>
- </template>
- <script>
-
-
-
-
- export default {
- data() {
- return {
- msg: 'hello vue'
- }
- },
- components: { }
- }
- </script>
- <style scoped>
- body {
- background-color: #ff0000;
- }
- </style>
|