options.vue 247 B

12345678910111213141516171819202122
  1. <template>
  2. <div class="main_app">
  3. <!-- <h1>Hello {{msg}}</h1> -->
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'optionsView',
  9. data () {
  10. return {
  11. msg: 'options123'
  12. }
  13. }
  14. }
  15. </script>
  16. <style>
  17. .main_app {
  18. }
  19. </style>