all files / src/components/ Params.vue

100% Statements 2/2
100% Branches 0/0
100% Functions 0/0
100% Lines 1/1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102                                                                                                                                                                                                           
// <template>
//   <h2 class="page-header">Parameters</h2>
//   <pre v-pre><code class="language-javascript">props: {
//
//     /**
//      * Contains the currently selected value. Very similar to a
//      * `value` attribute on an &amp;lt;input&amp;gt;. In most cases, you'll want
//      * to set this as a two-way binding, using :value.sync. However,
//      * this will not work with Vuex, in which case you'll need to use
//      * the onChange callback property.
//      * @type {Object||String||null}
//      */
//     value: {
//       default: null
//     },
//
//     /**
//      * An array of strings or objects to be used as dropdown choices.
//      * If you are using an array of objects, vue-select will look for
//      * a `label` key (ex. [{label: 'This is Foo', value: 'foo'}]). A
//      * custom label key can be set with the `label` prop.
//      * @type {Array}
//      */
//     options: {
//       type: Array,
//       default() { return [] },
//     },
//
//     /**
//      * Enable/disable filtering the options.
//      * @type {Boolean}
//      */
//     searchable: {
//       type: Boolean,
//       default: true
//     },
//
//     /**
//      * Equivalent to the `multiple` attribute on a `&lt;select&gt;` input.
//      * @type {Boolean}
//      */
//     multiple: {
//       type: Boolean,
//       default: false
//     },
//
//     /**
//      * Equivalent to the `placeholder` attribute on an `&lt;input&gt;`.
//      * @type {String}
//      */
//     placeholder: {
//       type: String,
//       default: ''
//     },
//
//     /**
//      * Sets a Vue transition property on the `.dropdown-menu`. vue-select
//      * does not include CSS for transitions, you'll need to add them yourself.
//      * @type {String}
//      */
//     transition: {
//       type: String,
//       default: 'expand'
//     },
//
//     /**
//      * Enables/disables clearing the search text when an option is selected.
//      * @type {Boolean}
//      */
//     clearSearchOnSelect: {
//       type: Boolean,
//       default: true
//     },
//
//     /**
//      * Tells vue-select what key to use when generating option labels when
//      * `option` is an object.
//      * @type {String}
//      */
//     label: {
//       type: String,
//       default: 'label'
//     },
//
//     /**
//      * An optional callback function that is called each time the selected
//      * value(s) change. When integrating with Vuex, use this callback to trigger
//      * an action, rather than using :value.sync to retreive the selected value.
//      * @type {Function}
//      * @default {null}
//      */
//     onChange: Function
//   }
//     </code></pre>
// </template>
//
// <script>
export default {}
// </script>
/* generated by vue-loader */