Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.02 KB | None | 0 0
  1. <template>
  2.   <div>
  3.     <input type="hidden" v-model="values.sr_id" />
  4.     <input type="hidden" v-model="values.li_id" />
  5.     <v-text-field v-model="values.title" label="Title"></v-text-field>
  6.     <span class="icon material-icons icon--fortooltip">info</span>
  7.     <div class="mdl-tooltip mdl-tooltip--top" data-mdl-for="title">only you can see this</div>
  8.  
  9.     <v-select v-model="values.language" :items="['en', 'it']" label="Language"></v-select>
  10.     <v-text-field v-model="values.triggered_by" label="Triggered by"></v-text-field>
  11.  
  12.     <v-select
  13.      v-model="values.show_question"
  14.      :items="['before_checkin', 'during_stay', 'after_checkin', 'always']"
  15.      label="Show question"
  16.    ></v-select>
  17.     <v-text-field v-model="values.question_icon" label="Question icon"></v-text-field>
  18.  
  19.     <v-textarea v-model="values.content" box label="Content" auto-grow></v-textarea>
  20.   </div>
  21. </template>
  22. <script>
  23. export default {
  24.   name: "HostingInputs",
  25.   props: {
  26.     values: Object
  27.   },
  28.   computed: {}
  29. };
  30. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement