12345678910111213141516171819202122 |
- <template>
- <div class="main_app">
- <!-- <h1>Hello {{msg}}</h1> -->
- </div>
- </template>
- <script>
- export default {
- name: 'optionsView',
- data () {
- return {
- msg: 'options123'
- }
- }
- }
- </script>
- <style>
- .main_app {
- }
- </style>
|