The onSearch prop allows you to load options via ajax in a parent component
-when the search text is updated. It is invoked with two parameters, search & loading.
-
/**
-* Accepts a callback function that will be run
-* when the search text changes. The callback
-* will be invoked with these parameters:
-*
-* @param {search} String Current search text
-* @param {loading} Function Toggle loading class
-*/
-onSearch: {
- type: Function,
- default: false
-},
-
-
The loading function accepts a boolean parameter that will be assigned
-to the vue-select internal loading property. Call loading(true) to set the
-loading property to true - toggling the loading spinner. After your
-asynchronous operation completes, call loading(false) to toggle it off.
-
Disabling Filtering
-
When loading server side options, it can be useful to disable the
-client side filtering. Use the filterable prop to disable filtering.
-
/**
- * When true, existing options will be filtered
- * by the search text. Should not be used in
- * conjunction with taggable.
- *
- * @type {Boolean}
- */
-filterable: {
- type: Boolean,
- default: true
-},
-
-
Loading Spinner
-
Vue Select includes a default loading spinner that appears when the loading class is present. The spinner slot allows you to implement your own spinner.
vue-select emits the input event any time the internal value is changed.
-This is the same event that allow the for the v-model syntax. When using
-Vuex for state management, you can use the input event to dispatch an
-action, or trigger a mutation.
/**
- * Contains the currently selected value. Very similar to a
- * `value` attribute on an <input>. You can listen for changes
- * using 'change' event using v-on
- * @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 []
- },
-},
-
-/**
- * Disable the entire component.
- * @type {Boolean}
- */
-disabled: {
- type: Boolean,
- default: false
-},
-
-/**
- * Sets the max-height property on the dropdown list.
- * @deprecated
- * @type {String}
- */
-maxHeight: {
- type: String,
- default: '400px'
-},
-
-/**
- * Enable/disable filtering the options.
- * @type {Boolean}
- */
-searchable: {
- type: Boolean,
- default: true
-},
-
-/**
- * Equivalent to the `multiple` attribute on a `<select>` input.
- * @type {Boolean}
- */
-multiple: {
- type: Boolean,
- default: false
-},
-
-/**
- * Equivalent to the `placeholder` attribute on an `<input>`.
- * @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: 'fade'
-},
-
-/**
- * Enables/disables clearing the search text when an option is selected.
- * @type {Boolean}
- */
-clearSearchOnSelect: {
- type: Boolean,
- default: true
-},
-
-/**
- * Close a dropdown when an option is chosen. Set to false to keep the dropdown
- * open (useful when combined with multi-select, for example)
- * @type {Boolean}
- */
-closeOnSelect: {
- type: Boolean,
- default: true
-},
-
-/**
- * Tells vue-select what key to use when generating option
- * labels when each `option` is an object.
- * @type {String}
- */
-label: {
- type: String,
- default: 'label'
-},
-
-/**
- * Callback to generate the label text. If {option}
- * is an object, returns option[this.label] by default.
- * @type {Function}
- * @param {Object || String} option
- * @return {String}
- */
-getOptionLabel: {
- type: Function,
- default(option) {
- if (typeof option === 'object') {
- if (!option.hasOwnProperty(this.label)) {
- returnconsole.warn(
- `[vue-select warn]: Label key "option.${this.label}" does not` +
- ` exist in options object ${JSON.stringify(option)}.\n` +
- 'http://sagalbot.github.io/vue-select/#ex-labels'
- )
- }
- if (this.label && option[this.label]) {
- return option[this.label]
- }
- }
- return option;
- }
-},
-
-/**
- * Callback to filter the search result the label text.
- * @type {Function}
- * @param {Object || String} option
- * @param {String} label
- * @param {String} search
- * @return {Boolean}
- */
-filterFunction: {
- type: Function,
- default(option, label, search) {
- return (label || '').toLowerCase().indexOf(search.toLowerCase()) > -1
- }
-},
-
-/**
- * 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}
- * @param {Object || String} val
- */
-onChange: {
- type: Function,
- default: function (val) {
- this.$emit('input', val)
- }
-},
-
-/**
- * Enable/disable creating options from searchInput.
- * @type {Boolean}
- */
-taggable: {
- type: Boolean,
- default: false
-},
-
-/**
- * Set the tabindex for the input field.
- * @type {Number}
- */
-tabindex: {
- type: Number,
- default: null
-},
-
-/**
- * When true, newly created tags will be added to
- * the options list.
- * @type {Boolean}
- */
-pushTags: {
- type: Boolean,
- default: false
-},
-
-/**
- * When true, existing options will be filtered
- * by the search text. Should not be used in conjunction
- * with taggable.
- * @type {Boolean}
- */
-filterable: {
- type: Boolean,
- default: true
-},
-
-/**
- * User defined function for adding Options
- * @type {Function}
- */
-createOption: {
- type: Function,
- default(newOption) {
- if (typeofthis.mutableOptions[0] === 'object') {
- newOption = {[this.label]: newOption}
- }
- this.$emit('option:created', newOption)
- return newOption
- }
-},
-
-/**
- * When false, updating the options will not reset the select value
- * @type {Boolean}
- */
-resetOnOptionsChange: {
- type: Boolean,
- default: false
-},
-
-/**
- * Disable the dropdown entirely.
- * @type {Boolean}
- */
-noDrop: {
- type: Boolean,
- default: false
-},
-
-/**
- * Sets the id of the input element.
- * @type {String}
- * @default {null}
- */
-inputId: {
- type: String
-},
-
-/**
- * Sets RTL support. Accepts 'ltr', 'rtl', 'auto'.
- * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/dir
- * @type {String}
- * @default 'auto'
- */
-dir: {
- type: String,
- default: 'auto'
-},
-
-
AJAX
-
/**
- * Toggles the adding of a 'loading' class to the main
- * .v-select wrapper. Useful to control UI state when
- * results are being processed through AJAX.
- */
-loading: {
- type: Boolean,
- default: false
-},
-
-/**
- * Accept a callback function that will be
- * run when the search text changes.
- *
- * loading() accepts a boolean value, and can
- * be used to toggle a loading class from
- * the onSearch callback.
- *
- * @param {search} String Current search text
- * @param {loading} Function(bool) Toggle loading class
- */
-onSearch: {
- type: Function,
- default: function(search, loading){}
-}
-
vue-select accepts arrays of strings or objects to use as options through the options prop:
-
<v-select:options="['foo','bar']"></v-select>
-
-
When provided an array of objects, vue-select will display a single value of the object. By default, vue-select will look for a key named label on the object to use as display text.
When the options array contains objects, vue-select looks for the label key to display by default. You can set your own label to match your source data using the label prop.
-
For example, consider an object with countryCode and countryName properties:
vue-select requires the option property to be an array. If you are using Vue in development mode, you will get warnings attempting to pass anything other than an array to the options prop. If you need a null/empty value, use an empty array [].
The most common use case for vue-select is to have the chosen value synced with a parent component. vue-select takes advantage of the v-model syntax to sync values with a parent.
If you don't require the value to be synced, you can also pass the prop directly:
-
<v-select:value="selected"></v-select>
-
-
This method allows you to pre-select a value(s), without syncing any changes to the parent component. This is also very useful when using a state management tool, like Vuex.
-
Single/Multiple Selection
-
By default, vue-select supports choosing a single value. If you need multiple values, use the multiple prop:
To allow input that's not present within the options, set the taggable prop to true.
-If you want new tags to be pushed to the options list, set push-tags to true.
Include vue & vue-select.js - I recommend using unpkg.com.
-
<!-- include VueJS first -->
-<scriptsrc="https://unpkg.com/vue@latest"></script>
-
-<!-- use the latest release -->
-<scriptsrc="https://unpkg.com/vue-select@latest"></script>
-<!-- or point to a specific release -->
-<scriptsrc="https://unpkg.com/vue-select@1.30"></script>
-
"],_default:[0,"",""]};Ge.optgroup=Ge.option,Ge.tbody=Ge.tfoot=Ge.colgroup=Ge.caption=Ge.thead,Ge.th=Ge.td;var Ye=/<|?\w+;/;!function(){var e=te.createDocumentFragment(),t=e.appendChild(te.createElement("div")),n=te.createElement("input");n.setAttribute("type","radio"),n.setAttribute("checked","checked"),n.setAttribute("name","t"),t.appendChild(n),pe.checkClone=t.cloneNode(!0).cloneNode(!0).lastChild.checked,t.innerHTML="",pe.noCloneChecked=!!t.cloneNode(!0).lastChild.defaultValue}();var Qe=te.documentElement,Je=/^key/,Ke=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ze=/^([^.]*)(?:\.(.+)|)/;de.event={global:{},add:function(e,t,n,r,o){var i,s,a,u,c,l,f,p,h,d,g,m=Fe.get(e);if(m)for(n.handler&&(i=n,n=i.handler,o=i.selector),o&&de.find.matchesSelector(Qe,o),n.guid||(n.guid=de.guid++),(u=m.events)||(u=m.events={}),(s=m.handle)||(s=m.handle=function(t){return"undefined"!=typeof de&&de.event.triggered!==t.type?de.event.dispatch.apply(e,arguments):void 0}),t=(t||"").match(qe)||[""],c=t.length;c--;)a=Ze.exec(t[c])||[],h=g=a[1],d=(a[2]||"").split(".").sort(),h&&(f=de.event.special[h]||{},h=(o?f.delegateType:f.bindType)||h,f=de.event.special[h]||{},l=de.extend({type:h,origType:g,data:r,handler:n,guid:n.guid,selector:o,needsContext:o&&de.expr.match.needsContext.test(o),namespace:d.join(".")},i),(p=u[h])||(p=u[h]=[],p.delegateCount=0,f.setup&&f.setup.call(e,r,d,s)!==!1||e.addEventListener&&e.addEventListener(h,s)),f.add&&(f.add.call(e,l),l.handler.guid||(l.handler.guid=n.guid)),o?p.splice(p.delegateCount++,0,l):p.push(l),de.event.global[h]=!0)},remove:function(e,t,n,r,o){var i,s,a,u,c,l,f,p,h,d,g,m=Fe.hasData(e)&&Fe.get(e);if(m&&(u=m.events)){for(t=(t||"").match(qe)||[""],c=t.length;c--;)if(a=Ze.exec(t[c])||[],h=g=a[1],d=(a[2]||"").split(".").sort(),h){for(f=de.event.special[h]||{},h=(r?f.delegateType:f.bindType)||h,p=u[h]||[],a=a[2]&&new RegExp("(^|\\.)"+d.join("\\.(?:.*\\.|)")+"(\\.|$)"),s=i=p.length;i--;)l=p[i],!o&&g!==l.origType||n&&n.guid!==l.guid||a&&!a.test(l.namespace)||r&&r!==l.selector&&("**"!==r||!l.selector)||(p.splice(i,1),l.selector&&p.delegateCount--,f.remove&&f.remove.call(e,l));s&&!p.length&&(f.teardown&&f.teardown.call(e,d,m.handle)!==!1||de.removeEvent(e,h,m.handle),delete u[h])}else for(h in u)de.event.remove(e,h+t[c],n,r,!0);de.isEmptyObject(u)&&Fe.remove(e,"handle events")}},dispatch:function(e){var t,n,r,o,i,s,a=de.event.fix(e),u=new Array(arguments.length),c=(Fe.get(this,"events")||{})[a.type]||[],l=de.event.special[a.type]||{};for(u[0]=a,t=1;t=1))for(;c!==this;c=c.parentNode||this)if(1===c.nodeType&&("click"!==e.type||c.disabled!==!0)){for(i=[],s={},n=0;n-1:de.find(o,this,null,[c]).length),s[o]&&i.push(r);i.length&&a.push({elem:c,handlers:i})}return c=this,u\x20\t\r\n\f]*)[^>]*)\/>/gi,tt=/
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+ Vue Select | VueJS Select2 Component
+
+
+
+
+Vue Select has moved to https://vue-select.org.
+
-
diff --git a/docs/search_index.json b/docs/search_index.json
deleted file mode 100644
index b5b98c2..0000000
--- a/docs/search_index.json
+++ /dev/null
@@ -1 +0,0 @@
-{"index":{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"keywords","boost":15},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"./":["+95%","3/4,","ajax","bootstrap","bulma,","codepen","compon","coverag","css","depend","featur","filtering/search","foundat","function","introduct","jquery.","list","minifi","option","overhead","provid","resourc","roadmap","select","select2","similar","single/multipl","support","tag","templat","test","trello","vue","vue.j","vuex","without","zero","~33kb"],"Install.html":["&","'./components/select.vue'","'vue'","/","add","cdn","compat","compon","component:","import","includ","instal","javascript:","npm","npm:","or,","recommend","regist","select","select',","select.j","then,","unpkg.com.","us","vselect","vselect)","vue","vue.component('v","vueselect.vueselect);","yarn","yarn:","~1.0","~2.0"],"Basics/Options.html":["\"ca\",","\"canada\"","/","[].","accept","anyth","array","array.","attempt","canada","consid","contain","countrycod","countrycode:","countrynam","countryname:","data","default,","default.","develop","display","dropdown","dropdown,","empti","example,","key","key:","label","look","match","mode,","name","need","null","null/empti","object","object.","objects,","option","pass","prop.","prop:","properti","properties:","provid","requir","select","set","singl","sourc","string","text.","through","us","valu","value,","vue","want","warn","you'd","{","}"],"Basics/Values.html":["advantag","allow","case","chang","choos","chosen","common","component.","default,","directly:","don't","input","list,","manag","method","model","multipl","need","new","option","options,","parent","parent.","pass","pre","present","prop","prop:","push","requir","select","set","singl","single/multipl","state","support","sync","synced,","syntax","tag","taggabl","take","that'","tool,","true.","us","v","valu","value(s),","value.","values,","veri","vue","vuex.","want","within","without"],"Basics/Localization.html":["accept","api","app.","attribut","attribute.","auto.","compon","definition:","dir","docs.","full","here!","html","implementation:","list","load","loading...","local","match","option","options.","replac","rtl","rtl,ltr,","same","select","slot","slots,","sorry,","spec:","spinner","standard","support","text","us","valu","view","vue","within","wrap"],"Advanced/Templating.html":["creat","current","custom","dropdown","give","option","option.titl","order","provid","scope","scope=\"option\"","select","slot","templat","template.","templates.","us","variabl","vue","{{","}}"],"Advanced/Vuex.html":["action,","allow","changed.","dispatch","emit","event","input","intern","management,","model","mutation.","same","select","state","syntax.","time","trigger","us","v","valu","vue","vuex"],"Advanced/Ajax.html":["&","*","*/","/**","@param","@type","accept","agnost","ajax","allow","appear","applic","assign","asynchron","axio","boolean","boolean,","call","callback","changes.","class","client","completes,","compon","component.","conjunct","core","creat","current","default","default:","disabl","exist","fals","fetch()","filter","filterable:","filtering.","function","function,","http","implement","includ","intern","invok","it'","layer,","librari","library,","load","loading(false)","loading(true)","loading.","loading...","off.","onsearch","onsearch:","oper","option","options,","paramet","parameters,","parameters:","parent","part","present.","process","prop","properti","property.","recommend","remot","request","requests.","run","search","select","server","set","ship","side","simpl","slot","spinner","spinner.","string","taggable.","text","text.","toggl","true","true,","two","type:","up","updated.","us","via","vue","vue.j","{","{boolean}","{loading}","{search}","},"],"Examples.html":["codepen","codepen.","collect","document","exampl","examples,","i'v","includ","put","site","togeth"],"Api/Props.html":["\"option.${this.label}\"","${json.stringify(option)}.\\n`","&&","''","'').tolowercase().indexof(search.tolowercase())","'400px'","'auto'","'auto'.","'change'","'fade'","'foo'}]).","'http://sagalbot.github.io/vu","'label'","'loading'","'ltr',","'object')","'rtl',","'thi","(!option.hasownproperty(this.label))","(ex.","(label","(this.label","(typeof","(use","(val)",")","*","*/","+",".",".v","/**","1",":value.sync","=","===",">","@default","@deprec","@param","@return","@see","@type","[]","[{label:","`","`.dropdown","`[vue","``","``.","`label`","`multiple`","`option`","`placeholder`","`value`","accept","action,","ad","add","ajax","ajax.","array","array,","attribut","be","boolean","boolean,","call","callback","callback.","chang","change.","changes.","choices.","chosen.","class","clear","clearsearchonselect:","close","closeonselect:","combin","component.","conjunct","console.warn(","contain","control","creat","createoption:","css","current","custom","default()","default(newoption)","default(option)","default(option,","default.","default:","defin","dir:","disabl","disabled:","dropdown","each","element.","enable/dis","enables/dis","entir","entirely.","equival","event","example)","exist","fals","false,","field.","filter","filterable:","filterfunction:","foo',","function","function(bool)","function(search,","function,","gener","getoptionlabel:","height","https://developer.mozilla.org/en","id","includ","input","input.","inputid:","integr","keep","key","label","label,","label:","labels'","list.","listen","load","loading()","loading){}","loading:","look","main","max","maxheight:","menu`.","multi","multiple:","need","newli","newopt","newoption)","newoption}","nodrop:","not`","null","number,","object","object,","object.","objects,","onchange:","onsearch","onsearch:","open","option","option;","option[this.label]","option[this.label])","options.","options:","placeholder:","process","prop","prop.","properti","pushtags:","reset","resetonoptionschange:","result","retreiv","return","rtl","run","search","search)","searchable:","searchinput.","select","select,","select/#ex","selected.","set","similar","state","string","string,","string}","support.","tabindex","tabindex:","tag","taggable.","taggable:","tell","text","text.","this.$emit('input',","this.$emit('option:created',","this.mutableoptions[0]","through","time","toggl","transit","transition:","transitions,","trigger","true","true,","type:","ui","updat","us","us/docs/web/html/global_attributes/dir","user","v","val","val)","valu","value(s)","value,","value.","value:","veri","vue","vuex,","warn]:","wrapper.","you'll","yourself.","{","{[this.label]:","{array}","{boolean}","{function}","{loading}","{null}","{number}","{object","{object||string||null}","{option}","{search}","{string}","||","}","},"]},"length":10},"tokenStore":{"root":{"1":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}},"3":{"docs":{},"/":{"4":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.024390243902439025}}}},"docs":{}}},"docs":{},"+":{"9":{"5":{"docs":{},"%":{"docs":{"./":{"ref":"./","tf":0.024390243902439025}}}},"docs":{}},"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0028735632183908046}}},"a":{"docs":{},"j":{"docs":{},"a":{"docs":{},"x":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":10.023391812865498},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}},".":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}},"d":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.004310344827586207}},"d":{"docs":{"Install.html":{"ref":"Install.html","tf":0.017241379310344827},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513}}}}}}}}},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745},"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.01818181818181818},"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.011695906432748537},"Api/Props.html":{"ref":"Api/Props.html","tf":0.004310344827586207}}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"Advanced/Vuex.html":{"ref":"Advanced/Vuex.html","tf":0.03333333333333333},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}},"n":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745}}}}}},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.049019607843137254},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0028735632183908046}},".":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745}}},",":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745}}}}}},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.01818181818181818},"Api/Props.html":{"ref":"Api/Props.html","tf":0.004310344827586207}},"e":{"docs":{},".":{"docs":{"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.01818181818181818}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.024390243902439025},"Advanced/Vuex.html":{"ref":"Advanced/Vuex.html","tf":0.03333333333333333},"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.011695906432748537}}}}}},"p":{"docs":{},"i":{"docs":{"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.03636363636363636}}},"p":{"docs":{},".":{"docs":{"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.01818181818181818}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},".":{"docs":{"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.01818181818181818}}}}}},"g":{"docs":{},"n":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}}}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}}}}},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}}}}}}}}},"x":{"docs":{},"i":{"docs":{},"o":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}}}}},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{"./":{"ref":"./","tf":0.024390243902439025}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}},",":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269},"Api/Props.html":{"ref":"Api/Props.html","tf":0.015804597701149427}}}}}}}}},"u":{"docs":{},"l":{"docs":{},"m":{"docs":{},"a":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.024390243902439025}}}}}}},"e":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"Examples.html":{"ref":"Examples.html","tf":0.08333333333333333}},".":{"docs":{"Examples.html":{"ref":"Examples.html","tf":0.08333333333333333}}}}}}}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"Install.html":{"ref":"Install.html","tf":0.017241379310344827},"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.05454545454545454},"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},":":{"docs":{"Install.html":{"ref":"Install.html","tf":0.017241379310344827}}},".":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.024390243902439025},"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}},"a":{"docs":{},"t":{"docs":{"Install.html":{"ref":"Install.html","tf":0.017241379310344827}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513}}}}},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.024390243902439025}}}}}}},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745}}}},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{},"(":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}},"j":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745}},"e":{"docs":{},":":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.0196078431372549}},"e":{"docs":{},":":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}}},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"Examples.html":{"ref":"Examples.html","tf":0.16666666666666666}}}}}}}},"s":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}},"d":{"docs":{},"n":{"docs":{"Install.html":{"ref":"Install.html","tf":0.017241379310344827}}}},"a":{"docs":{},"n":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745}}}}}},"s":{"docs":{},"e":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513}}}},"l":{"docs":{},"l":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.011695906432748537},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.011695906432748537},"Api/Props.html":{"ref":"Api/Props.html","tf":0.007183908045977011}},".":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"Advanced/Vuex.html":{"ref":"Advanced/Vuex.html","tf":0.03333333333333333}}}},"s":{"docs":{},".":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}},".":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}},"o":{"docs":{},"o":{"docs":{},"s":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513}}}},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513}},".":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"Advanced/Templating.html":{"ref":"Advanced/Templating.html","tf":0.03571428571428571},"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0028735632183908046}},"e":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}}}}},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"Advanced/Templating.html":{"ref":"Advanced/Templating.html","tf":0.03571428571428571},"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0028735632183908046}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"Advanced/Templating.html":{"ref":"Advanced/Templating.html","tf":0.03571428571428571},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.011695906432748537},"Api/Props.html":{"ref":"Api/Props.html","tf":0.004310344827586207}}}}},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}}}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},":":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},":":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.024390243902439025}}}}}},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}},",":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745},"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513}}},".":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}},":":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.011695906432748537},"Api/Props.html":{"ref":"Api/Props.html","tf":0.028735632183908046}}},"(":{"docs":{},")":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}},",":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.03636363636363636}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745}}}}}}}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745}}}}},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.0392156862745098}}}}},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"Advanced/Vuex.html":{"ref":"Advanced/Vuex.html","tf":0.03333333333333333}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.017543859649122806},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0028735632183908046}},"e":{"docs":{},"d":{"docs":{},":":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}},"r":{"docs":{"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.03636363636363636}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"l":{"docs":{},"y":{"docs":{},":":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513}}}}}}}},":":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":5.009803921568627},"Advanced/Templating.html":{"ref":"Advanced/Templating.html","tf":0.03571428571428571},"Api/Props.html":{"ref":"Api/Props.html","tf":0.007183908045977011}},",":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513}}}}},"c":{"docs":{},"s":{"docs":{},".":{"docs":{"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.01818181818181818}}}},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"Examples.html":{"ref":"Examples.html","tf":0.08333333333333333}}}}}}}}}},"f":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.024390243902439025}}}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},")":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}}}}}}},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.017543859649122806},"Api/Props.html":{"ref":"Api/Props.html","tf":0.004310344827586207}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"/":{"docs":{},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"./":{"ref":"./","tf":0.024390243902439025}}}}}}}}},".":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.011695906432748537}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{},".":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.024390243902439025}}}}}}},"o":{"docs":{},"'":{"docs":{},",":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.023391812865497075},"Api/Props.html":{"ref":"Api/Props.html","tf":0.005747126436781609}},",":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269},"Api/Props.html":{"ref":"Api/Props.html","tf":0.007183908045977011}}},"(":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},")":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},",":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.01818181818181818}}}}},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269},"Api/Props.html":{"ref":"Api/Props.html","tf":0.011494252873563218}},"e":{"docs":{},",":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":10}}}}}}}},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"Advanced/Vuex.html":{"ref":"Advanced/Vuex.html","tf":0.03333333333333333},"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}}},"g":{"docs":{},"r":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}},"c":{"docs":{},"l":{"docs":{},"u":{"docs":{},"d":{"docs":{"Install.html":{"ref":"Install.html","tf":0.017241379310344827},"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269},"Examples.html":{"ref":"Examples.html","tf":0.08333333333333333},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"Install.html":{"ref":"Install.html","tf":10.03448275862069}}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513},"Advanced/Vuex.html":{"ref":"Advanced/Vuex.html","tf":0.1},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0028735632183908046}},".":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}},"i":{"docs":{},"d":{"docs":{},":":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}},"v":{"docs":{},"o":{"docs":{},"k":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.011695906432748537}}}}}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"Install.html":{"ref":"Install.html","tf":0.05172413793103448}}}}},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.03636363636363636}}}}}}}}}}}}}}}},"t":{"docs":{},"'":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}}},"'":{"docs":{},"v":{"docs":{"Examples.html":{"ref":"Examples.html","tf":0.08333333333333333}}}},"d":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}},"j":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.024390243902439025}}}}}}}},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},":":{"docs":{"Install.html":{"ref":"Install.html","tf":0.017241379310344827}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.01818181818181818}},",":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513}}},".":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0028735632183908046}}},"e":{"docs":{},"n":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}},"y":{"docs":{},",":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.049019607843137254},"Api/Props.html":{"ref":"Api/Props.html","tf":0.008620689655172414}},",":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}},":":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}},"s":{"docs":{},"'":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}},"y":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}}}}}},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.0196078431372549},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}},"a":{"docs":{},"d":{"docs":{"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.01818181818181818},"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.06432748538011696},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0028735632183908046}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}},".":{"docs":{},".":{"docs":{"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.01818181818181818},"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}}}},"(":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},")":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}}}}}}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}}}}}},")":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}},")":{"docs":{},"{":{"docs":{},"}":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}},":":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":10}}}}}}},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.024390243902439025}}}}}}},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745},"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.01818181818181818}}}}},"n":{"docs":{},"a":{"docs":{},"g":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{"Advanced/Vuex.html":{"ref":"Advanced/Vuex.html","tf":0.03333333333333333}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}},"x":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},":":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},",":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745}}},"l":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513},"Advanced/Vuex.html":{"ref":"Advanced/Vuex.html","tf":0.03333333333333333}}}}}},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513}}}}}},"n":{"docs":{},"u":{"docs":{},"`":{"docs":{},".":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}},"p":{"docs":{},"l":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.024390243902439025}},"e":{"docs":{},":":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"Advanced/Vuex.html":{"ref":"Advanced/Vuex.html","tf":0.03333333333333333}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"Basics/Options.html":{"ref":"Basics/Options.html","tf":5.078431372549019},"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513},"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.03636363636363636},"Advanced/Templating.html":{"ref":"Advanced/Templating.html","tf":0.14285714285714285},"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.017543859649122806},"Api/Props.html":{"ref":"Api/Props.html","tf":0.01867816091954023}},"s":{"docs":{},",":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513},"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}},".":{"docs":{"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.01818181818181818},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}},":":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}},".":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{"Advanced/Templating.html":{"ref":"Advanced/Templating.html","tf":0.03571428571428571}}}}}}},";":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}},"[":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},"]":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0028735632183908046}},")":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}},"n":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.024390243902439025}}}}}}}}},"r":{"docs":{},",":{"docs":{"Install.html":{"ref":"Install.html","tf":0.017241379310344827}}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"Advanced/Templating.html":{"ref":"Advanced/Templating.html","tf":0.03571428571428571}}}}}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.029411764705882353},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0028735632183908046}},".":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}},"s":{"docs":{},",":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.0196078431372549},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}},",":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}},"f":{"docs":{},"f":{"docs":{},".":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}}}},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}},":":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},":":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745},"Advanced/Templating.html":{"ref":"Advanced/Templating.html","tf":0.07142857142857142}}}}},"p":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.024390243902439025},"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.011695906432748537},"Api/Props.html":{"ref":"Api/Props.html","tf":10}},".":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.0196078431372549},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}},":":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745},"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745},"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0028735632183908046}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745}}}}}},"y":{"docs":{},".":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}}}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}},"e":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513}},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513}},".":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745},"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513}}}},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.024390243902439025},"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.011695906432748537}},".":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513}}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},",":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}},":":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}}}}}}}}},"t":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}}}},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.024390243902439025}},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{},"s":{"docs":{},":":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}},"t":{"docs":{"Examples.html":{"ref":"Examples.html","tf":0.08333333333333333}}}},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"h":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.024390243902439025}}}}}},"e":{"docs":{},"t":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}},"o":{"docs":{},"n":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},":":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0028735632183908046}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"Install.html":{"ref":"Install.html","tf":0.017241379310344827},"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"Install.html":{"ref":"Install.html","tf":0.034482758620689655}}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745},"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}},"s":{"docs":{},".":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.01818181818181818}}}}}},"m":{"docs":{},"o":{"docs":{},"t":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}}}},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"i":{"docs":{},"v":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.010057471264367816}}}}}}},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"./":{"ref":"./","tf":0.024390243902439025}}}}}}}},"t":{"docs":{},"l":{"docs":{"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.03636363636363636},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}},",":{"docs":{},"l":{"docs":{},"t":{"docs":{},"r":{"docs":{},",":{"docs":{"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.01818181818181818}}}}}}}}},"u":{"docs":{},"n":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"2":{"docs":{"./":{"ref":"./","tf":0.024390243902439025}}},"docs":{"./":{"ref":"./","tf":0.07317073170731707},"Install.html":{"ref":"Install.html","tf":0.06896551724137931},"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.049019607843137254},"Basics/Values.html":{"ref":"Basics/Values.html","tf":5.073170731707317},"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.01818181818181818},"Advanced/Templating.html":{"ref":"Advanced/Templating.html","tf":0.03571428571428571},"Advanced/Vuex.html":{"ref":"Advanced/Vuex.html","tf":0.03333333333333333},"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.011695906432748537},"Api/Props.html":{"ref":"Api/Props.html","tf":0.014367816091954023}},"'":{"docs":{},",":{"docs":{"Install.html":{"ref":"Install.html","tf":0.034482758620689655}}}},".":{"docs":{},"j":{"docs":{"Install.html":{"ref":"Install.html","tf":0.017241379310344827}}}},",":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}},"/":{"docs":{},"#":{"docs":{},"e":{"docs":{},"x":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}},"t":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745},"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.024390243902439025},"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269},"Api/Props.html":{"ref":"Api/Props.html","tf":0.010057471264367816}}},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.029239766081871343},"Api/Props.html":{"ref":"Api/Props.html","tf":0.008620689655172414}},")":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},".":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}}},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}}}}}},"i":{"docs":{},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}},"p":{"docs":{},"l":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}}}},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745},"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513}},"e":{"docs":{},"/":{"docs":{},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.011695906432748537}}}},"t":{"docs":{},"e":{"docs":{"Examples.html":{"ref":"Examples.html","tf":0.08333333333333333}}}}},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.04878048780487805},"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513},"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.01818181818181818}},".":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745}}}}},"r":{"docs":{},"r":{"docs":{},"y":{"docs":{},",":{"docs":{"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.01818181818181818}}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745},"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269},"Api/Props.html":{"ref":"Api/Props.html","tf":0.004310344827586207}},",":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.007183908045977011}}},"}":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.004310344827586207}}}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513},"Advanced/Vuex.html":{"ref":"Advanced/Vuex.html","tf":0.03333333333333333},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.01818181818181818}}}}}}}}},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.036585365853658534}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513}}}}}},"t":{"docs":{},"a":{"docs":{},"x":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513}},".":{"docs":{"Advanced/Vuex.html":{"ref":"Advanced/Vuex.html","tf":0.03333333333333333}}}}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.01818181818181818},"Advanced/Vuex.html":{"ref":"Advanced/Vuex.html","tf":0.03333333333333333}}}}},"l":{"docs":{},"o":{"docs":{},"t":{"docs":{"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.07272727272727272},"Advanced/Templating.html":{"ref":"Advanced/Templating.html","tf":0.14285714285714285},"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}},"s":{"docs":{},",":{"docs":{"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.01818181818181818}}}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},":":{"docs":{"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.01818181818181818}}}}},"i":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.01818181818181818},"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.017543859649122806}},".":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.011695906432748537}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{"Advanced/Templating.html":{"ref":"Advanced/Templating.html","tf":0.07142857142857142}},"=":{"docs":{},"\"":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{"Advanced/Templating.html":{"ref":"Advanced/Templating.html","tf":0.03571428571428571}}}}}}}}}}}}}}},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}}}}},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.036585365853658534},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}},"g":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513}},"e":{"docs":{},".":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}},":":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}},"k":{"docs":{},"e":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513}}}},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}},":":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"Advanced/Templating.html":{"ref":"Advanced/Templating.html","tf":10}},"e":{"docs":{},".":{"docs":{"Advanced/Templating.html":{"ref":"Advanced/Templating.html","tf":0.03571428571428571}}},"s":{"docs":{},".":{"docs":{"Advanced/Templating.html":{"ref":"Advanced/Templating.html","tf":0.03571428571428571}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.04878048780487805}}}},"x":{"docs":{},"t":{"docs":{"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.05454545454545454},"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.017543859649122806},"Api/Props.html":{"ref":"Api/Props.html","tf":0.004310344827586207}},".":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745},"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269},"Api/Props.html":{"ref":"Api/Props.html","tf":0.004310344827586207}}}}},"l":{"docs":{},"l":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"./":{"ref":"./","tf":0.024390243902439025}}}}}},"u":{"docs":{},"e":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.011695906432748537},"Api/Props.html":{"ref":"Api/Props.html","tf":0.005747126436781609}},".":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.024390243902439025}}},",":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0028735632183908046}}}}},"i":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"Advanced/Vuex.html":{"ref":"Advanced/Vuex.html","tf":0.03333333333333333},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}},"s":{"docs":{},",":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},",":{"docs":{"Install.html":{"ref":"Install.html","tf":0.017241379310344827}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}},"a":{"docs":{},"t":{"docs":{},"'":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513}}}}},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"$":{"docs":{},"e":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"'":{"docs":{},",":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"[":{"0":{"docs":{},"]":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}},"docs":{}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},",":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513}}}}},"g":{"docs":{},"g":{"docs":{},"l":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.017543859649122806},"Api/Props.html":{"ref":"Api/Props.html","tf":0.004310344827586207}}}},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"Examples.html":{"ref":"Examples.html","tf":0.08333333333333333}}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"Advanced/Vuex.html":{"ref":"Advanced/Vuex.html","tf":0.03333333333333333},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}},"w":{"docs":{},"o":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},":":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.011695906432748537},"Api/Props.html":{"ref":"Api/Props.html","tf":0.034482758620689655}}}}}}},"v":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513},"Advanced/Vuex.html":{"ref":"Advanced/Vuex.html","tf":0.03333333333333333},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}},"u":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"Install.html":{"ref":"Install.html","tf":0.1724137931034483},"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.058823529411764705},"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.036585365853658534},"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.01818181818181818},"Advanced/Templating.html":{"ref":"Advanced/Templating.html","tf":0.03571428571428571},"Advanced/Vuex.html":{"ref":"Advanced/Vuex.html","tf":0.03333333333333333},"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.011695906432748537},"Api/Props.html":{"ref":"Api/Props.html","tf":0.005747126436781609}},".":{"docs":{},"j":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"v":{"docs":{"Install.html":{"ref":"Install.html","tf":0.034482758620689655}}}}}}}}}}}}}}},"x":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"Advanced/Vuex.html":{"ref":"Advanced/Vuex.html","tf":10.066666666666666}},".":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513}}},",":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},".":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},")":{"docs":{},";":{"docs":{"Install.html":{"ref":"Install.html","tf":0.017241379310344827}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"Install.html":{"ref":"Install.html","tf":0.017241379310344827}},")":{"docs":{"Install.html":{"ref":"Install.html","tf":0.017241379310344827}}}}}}}}},"a":{"docs":{},"l":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}},"u":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745},"Basics/Values.html":{"ref":"Basics/Values.html","tf":5.048780487804878},"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.01818181818181818},"Advanced/Vuex.html":{"ref":"Advanced/Vuex.html","tf":0.03333333333333333},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}},"e":{"docs":{},",":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}},"(":{"docs":{},"s":{"docs":{},")":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}},",":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513}}}}}},".":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0028735632183908046}}},"s":{"docs":{},",":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513}}}},":":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0028735632183908046}}}}},")":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"Advanced/Templating.html":{"ref":"Advanced/Templating.html","tf":0.03571428571428571}}}}}}}},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.01818181818181818}}}},"a":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513}}}}},"i":{"docs":{},"n":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513},"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.03636363636363636}}}}}}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745},"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513}}}},"r":{"docs":{},"n":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745}},"]":{"docs":{},":":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.01818181818181818}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{"./":{"ref":"./","tf":0.024390243902439025}}}}}},"~":{"1":{"docs":{},".":{"0":{"docs":{"Install.html":{"ref":"Install.html","tf":0.034482758620689655}}},"docs":{}}},"2":{"docs":{},".":{"0":{"docs":{"Install.html":{"ref":"Install.html","tf":0.034482758620689655}}},"docs":{}}},"3":{"3":{"docs":{},"k":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.024390243902439025}}}}},"docs":{}},"docs":{}},"&":{"docs":{"Install.html":{"ref":"Install.html","tf":0.017241379310344827},"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}},"&":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}},"'":{"4":{"0":{"0":{"docs":{},"p":{"docs":{},"x":{"docs":{},"'":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}},"docs":{}},"docs":{}},"docs":{},".":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},".":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"'":{"docs":{"Install.html":{"ref":"Install.html","tf":0.017241379310344827}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"'":{"docs":{"Install.html":{"ref":"Install.html","tf":0.017241379310344827}}}}}},"'":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"o":{"docs":{},"f":{"docs":{},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"'":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0028735632183908046}},".":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}},"f":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"'":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},"}":{"docs":{},"]":{"docs":{},")":{"docs":{},".":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{},"a":{"docs":{},"l":{"docs":{},"b":{"docs":{},"o":{"docs":{},"t":{"docs":{},".":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"i":{"docs":{},"o":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},"'":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"'":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"'":{"docs":{},",":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0028735632183908046}}}}}}}}}},"r":{"docs":{},"t":{"docs":{},"l":{"docs":{},"'":{"docs":{},",":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}},"/":{"docs":{"Install.html":{"ref":"Install.html","tf":0.017241379310344827},"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745}},"*":{"docs":{},"*":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.011695906432748537},"Api/Props.html":{"ref":"Api/Props.html","tf":0.035919540229885055}}}}},"n":{"docs":{},"p":{"docs":{},"m":{"docs":{"Install.html":{"ref":"Install.html","tf":0.034482758620689655}},":":{"docs":{"Install.html":{"ref":"Install.html","tf":0.017241379310344827}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745}}}}},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745},"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}},"w":{"docs":{"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.012195121951219513}},"l":{"docs":{},"i":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0028735632183908046}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}},"}":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0028735632183908046}},"/":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745}}}}}}}}}},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}},"o":{"docs":{},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},":":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}},"t":{"docs":{},"`":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}},"u":{"docs":{},"n":{"docs":{},"p":{"docs":{},"k":{"docs":{},"g":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{"Install.html":{"ref":"Install.html","tf":0.017241379310344827}}}}}}}}}}},"s":{"docs":{"Install.html":{"ref":"Install.html","tf":0.06896551724137931},"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.058823529411764705},"Basics/Values.html":{"ref":"Basics/Values.html","tf":0.04878048780487805},"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.03636363636363636},"Advanced/Templating.html":{"ref":"Advanced/Templating.html","tf":0.03571428571428571},"Advanced/Vuex.html":{"ref":"Advanced/Vuex.html","tf":0.1},"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.023391812865497075},"Api/Props.html":{"ref":"Api/Props.html","tf":0.014367816091954023}},"/":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"s":{"docs":{},"/":{"docs":{},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"/":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"/":{"docs":{},"g":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{},"_":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}},"p":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}}}}}}}}},"i":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}},"y":{"docs":{},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{"Install.html":{"ref":"Install.html","tf":0.034482758620689655}},":":{"docs":{"Install.html":{"ref":"Install.html","tf":0.017241379310344827}}}}}},"o":{"docs":{},"u":{"docs":{},"'":{"docs":{},"d":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745}}},"l":{"docs":{},"l":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},".":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}},"\"":{"docs":{},"c":{"docs":{},"a":{"docs":{},"\"":{"docs":{},",":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745}}}},"n":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"\"":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"$":{"docs":{},"{":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},"}":{"docs":{},"\"":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}}}}}}}}}}}}}}},"[":{"docs":{},"]":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}},".":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745}}}},"{":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},":":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.0196078431372549}}}}},"i":{"docs":{},"t":{"docs":{"Advanced/Vuex.html":{"ref":"Advanced/Vuex.html","tf":0.03333333333333333}}}}},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"Examples.html":{"ref":"Examples.html","tf":10.083333333333334}},"e":{"docs":{},",":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745}}},"s":{"docs":{},",":{"docs":{"Examples.html":{"ref":"Examples.html","tf":0.08333333333333333}}}},")":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0028735632183908046}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"Advanced/Vuex.html":{"ref":"Advanced/Vuex.html","tf":0.13333333333333333},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0028735632183908046}}}}},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0028735632183908046}}}}}},"s":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"r":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}},"e":{"docs":{},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0028735632183908046}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.0196078431372549},"Api/Props.html":{"ref":"Api/Props.html","tf":0.005747126436781609}},":":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745}}}},"e":{"docs":{},"p":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}},"{":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745},"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.011695906432748537},"Api/Props.html":{"ref":"Api/Props.html","tf":0.04885057471264368}},"{":{"docs":{"Advanced/Templating.html":{"ref":"Advanced/Templating.html","tf":0.03571428571428571}}},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"}":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269},"Api/Props.html":{"ref":"Api/Props.html","tf":0.015804597701149427}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"}":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"}":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269},"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"}":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.01293103448275862}}}}}}}}},"[":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},"]":{"docs":{},":":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"}":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"}":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.005747126436781609}}}}}}}}}}},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"}":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"}":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.004310344827586207}},"|":{"docs":{},"|":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"|":{"docs":{},"|":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"}":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"}":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}},"}":{"docs":{"Basics/Options.html":{"ref":"Basics/Options.html","tf":0.00980392156862745},"Api/Props.html":{"ref":"Api/Props.html","tf":0.01293103448275862}},"}":{"docs":{"Advanced/Templating.html":{"ref":"Advanced/Templating.html","tf":0.03571428571428571}}},",":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.011695906432748537},"Api/Props.html":{"ref":"Api/Props.html","tf":0.035919540229885055}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"!":{"docs":{"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.01818181818181818}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"Basics/Localization.html":{"ref":"Basics/Localization.html","tf":0.03636363636363636}}}},"t":{"docs":{},"p":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"m":{"docs":{},"o":{"docs":{},"z":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"/":{"docs":{},"e":{"docs":{},"n":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{"Advanced/Templating.html":{"ref":"Advanced/Templating.html","tf":0.03571428571428571}}}}},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0028735632183908046}}}}},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},":":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}}}}}}}},"*":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.06432748538011696},"Api/Props.html":{"ref":"Api/Props.html","tf":0.11925287356321838}},"/":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.011695906432748537},"Api/Props.html":{"ref":"Api/Props.html","tf":0.035919540229885055}}}},"@":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.011695906432748537},"Api/Props.html":{"ref":"Api/Props.html","tf":0.010057471264367816}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"Advanced/Ajax.html":{"ref":"Advanced/Ajax.html","tf":0.005847953216374269},"Api/Props.html":{"ref":"Api/Props.html","tf":0.033045977011494254}}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0028735632183908046}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0028735632183908046}}}}}}}},"s":{"docs":{},"e":{"docs":{},"e":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}},"$":{"docs":{},"{":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"f":{"docs":{},"y":{"docs":{},"(":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},"}":{"docs":{},".":{"docs":{},"\\":{"docs":{},"n":{"docs":{},"`":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"!":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"(":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},")":{"docs":{},")":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},".":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"o":{"docs":{},"f":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0028735632183908046}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},")":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}},")":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}},".":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}},"v":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}},":":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}}}},"=":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}},"=":{"docs":{},"=":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0028735632183908046}}}}},">":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}},"`":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}},".":{"docs":{},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}},"[":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}},"`":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}},".":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},"`":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0028735632183908046}}}}}}}},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"`":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"`":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"h":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"`":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"`":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.0014367816091954023}}}}}}}}},"|":{"docs":{},"|":{"docs":{"Api/Props.html":{"ref":"Api/Props.html","tf":0.005747126436781609}}}}},"length":649},"corpusTokens":["\"ca\",","\"canada\"","\"option.${this.label}\"","${json.stringify(option)}.\\n`","&","&&","''","'').tolowercase().indexof(search.tolowercase())","'./components/select.vue'","'400px'","'auto'","'auto'.","'change'","'fade'","'foo'}]).","'http://sagalbot.github.io/vu","'label'","'loading'","'ltr',","'object')","'rtl',","'thi","'vue'","(!option.hasownproperty(this.label))","(ex.","(label","(this.label","(typeof","(use","(val)",")","*","*/","+","+95%",".",".v","/","/**","1","3/4,",":value.sync","=","===",">","@default","@deprec","@param","@return","@see","@type","[]","[].","[{label:","`","`.dropdown","`[vue","``","``.","`label`","`multiple`","`option`","`placeholder`","`value`","accept","action,","ad","add","advantag","agnost","ajax","ajax.","allow","anyth","api","app.","appear","applic","array","array,","array.","assign","asynchron","attempt","attribut","attribute.","auto.","axio","be","boolean","boolean,","bootstrap","bulma,","call","callback","callback.","canada","case","cdn","chang","change.","changed.","changes.","choices.","choos","chosen","chosen.","class","clear","clearsearchonselect:","client","close","closeonselect:","codepen","codepen.","collect","combin","common","compat","completes,","compon","component.","component:","conjunct","consid","console.warn(","contain","control","core","countrycod","countrycode:","countrynam","countryname:","coverag","creat","createoption:","css","current","custom","data","default","default()","default(newoption)","default(option)","default(option,","default,","default.","default:","defin","definition:","depend","develop","dir","dir:","directly:","disabl","disabled:","dispatch","display","docs.","document","don't","dropdown","dropdown,","each","element.","emit","empti","enable/dis","enables/dis","entir","entirely.","equival","event","exampl","example)","example,","examples,","exist","fals","false,","featur","fetch()","field.","filter","filterable:","filterfunction:","filtering.","filtering/search","foo',","foundat","full","function","function(bool)","function(search,","function,","gener","getoptionlabel:","give","height","here!","html","http","https://developer.mozilla.org/en","i'v","id","implement","implementation:","import","includ","input","input.","inputid:","instal","integr","intern","introduct","invok","it'","javascript:","jquery.","keep","key","key:","label","label,","label:","labels'","layer,","librari","library,","list","list,","list.","listen","load","loading()","loading(false)","loading(true)","loading){}","loading.","loading...","loading:","local","look","main","manag","management,","match","max","maxheight:","menu`.","method","minifi","mode,","model","multi","multipl","multiple:","mutation.","name","need","new","newli","newopt","newoption)","newoption}","nodrop:","not`","npm","npm:","null","null/empti","number,","object","object,","object.","objects,","off.","onchange:","onsearch","onsearch:","open","oper","option","option.titl","option;","option[this.label]","option[this.label])","options,","options.","options:","or,","order","overhead","paramet","parameters,","parameters:","parent","parent.","part","pass","placeholder:","pre","present","present.","process","prop","prop.","prop:","properti","properties:","property.","provid","push","pushtags:","put","recommend","regist","remot","replac","request","requests.","requir","reset","resetonoptionschange:","resourc","result","retreiv","return","roadmap","rtl","rtl,ltr,","run","same","scope","scope=\"option\"","search","search)","searchable:","searchinput.","select","select',","select,","select.j","select/#ex","select2","selected.","server","set","ship","side","similar","simpl","singl","single/multipl","site","slot","slots,","sorry,","sourc","spec:","spinner","spinner.","standard","state","string","string,","string}","support","support.","sync","synced,","syntax","syntax.","tabindex","tabindex:","tag","taggabl","taggable.","taggable:","take","tell","templat","template.","templates.","test","text","text.","that'","then,","this.$emit('input',","this.$emit('option:created',","this.mutableoptions[0]","through","time","togeth","toggl","tool,","transit","transition:","transitions,","trello","trigger","true","true,","true.","two","type:","ui","unpkg.com.","up","updat","updated.","us","us/docs/web/html/global_attributes/dir","user","v","val","val)","valu","value(s)","value(s),","value,","value.","value:","values,","variabl","veri","via","view","vselect","vselect)","vue","vue.component('v","vue.j","vueselect.vueselect);","vuex","vuex,","vuex.","want","warn","warn]:","within","without","wrap","wrapper.","yarn","yarn:","you'd","you'll","yourself.","zero","{","{[this.label]:","{array}","{boolean}","{function}","{loading}","{null}","{number}","{object","{object||string||null}","{option}","{search}","{string}","{{","||","}","},","}}","~1.0","~2.0","~33kb"],"pipeline":["stopWordFilter","stemmer"]},"store":{"./":{"url":"./","title":"Introduction","keywords":"","body":"vue-select\n\n \n \n \n \n\n\nA Vue.js select component that provides similar functionality to Select2 without the overhead of jQuery.\n\nFeatures\n\nAJAX Support\nTagging\nList Filtering/Searching\nSupports Vuex\nSelect Single/Multiple Options\nTested with Bootstrap 3/4, Bulma, Foundation\n+95% Test Coverage\n~33kb minified with CSS\nZero dependencies\n\nResources\n\nCodePen Template\nTrello Roadmap\n\n"},"Install.html":{"url":"Install.html","title":"Installation","keywords":"","body":"Vue Compatibility\n\nvue ~2.0 use vue-select ~2.0\nvue ~1.0 use vue-select ~1.0\n\nYarn / NPM\nInstall with yarn:\nyarn add vue-select\n\nor, using NPM:\nnpm install vue-select\nThen, import and register the component:\nimport Vue from 'vue'\nimport vSelect from './components/Select.vue'\n\nVue.component('v-select', vSelect)\n\nCDN\nInclude vue & vue-select.js - I recommend using unpkg.com.\n\n\n\n\n\n\n\n\nThen register the component in your javascript:\nVue.component('v-select', VueSelect.VueSelect);\n\n\n"},"Basics/Options.html":{"url":"Basics/Options.html","title":"Dropdown Options","keywords":"","body":"Dropdown Options \nvue-select accepts arrays of strings or objects to use as options through the options prop:\n\n\nWhen provided an array of objects, vue-select will display a single value of the object. By default, vue-select will look for a key named label on the object to use as display text.\n\n\nOption Labels \nWhen the options array contains objects, vue-select looks for the label key to display by default. You can set your own label to match your source data using the label prop.\nFor example, consider an object with countryCode and countryName properties:\n{\n countryCode: \"CA\",\n countryName: \"Canada\"\n}\n\nIf you wanted to display Canada in the dropdown, you'd use the countryName key:\n\n\n\nNull / Empty Options \nvue-select requires the option property to be an array. If you are using Vue in development mode, you will get warnings attempting to pass anything other than an array to the options prop. If you need a null/empty value, use an empty array [].\n"},"Basics/Values.html":{"url":"Basics/Values.html","title":"Selecting Values","keywords":"","body":"Selecting Values \nThe most common use case for vue-select is to have the chosen value synced with a parent component. vue-select takes advantage of the v-model syntax to sync values with a parent.\n\n\n\nIf you don't require the value to be synced, you can also pass the prop directly:\n\n\nThis method allows you to pre-select a value(s), without syncing any changes to the parent component. This is also very useful when using a state management tool, like Vuex.\nSingle/Multiple Selection \nBy default, vue-select supports choosing a single value. If you need multiple values, use the multiple prop:\n\n\n\nTagging \nTo allow input that's not present within the options, set the taggable prop to true.\nIf you want new tags to be pushed to the options list, set push-tags to true.\n\n\n\n"},"Basics/Localization.html":{"url":"Basics/Localization.html","title":"Localization","keywords":"","body":"RTL\nvue-select supports RTL using the standard HTML API using the dir attribute.\n\n\nThe dir attribute accepts the same values as the HTML spec: rtl,ltr, and auto.\nComponent Text\nAll of the text within the component has been wrapped within slots and can be replaced in your app.\nLoading Spinner\nSlot Definition:\n\n Loading...\n\n\nImplementation:\n\n \n\n\nNo Options Text\nSlot Definition:\nSorry, no matching options.\n\nImplementation:\n\n No Options Here!\n\n\nFor a full list of component slots, view the slots API docs.\n\n"},"Advanced/Templating.html":{"url":"Advanced/Templating.html","title":"Templating","keywords":"","body":"Scoped Slot option\nvue-select provides the scoped option slot in order to create custom dropdown templates.\n\n \n \n {{ option.title }}\n \n \n\nUsing the option slot with slot-scope=\"option\" gives the \nprovides the current option variable to the template.\n\n"},"Advanced/Vuex.html":{"url":"Advanced/Vuex.html","title":"Vuex","keywords":"","body":"Using the input Event with Vuex\nvue-select emits the input event any time the internal value is changed. \nThis is the same event that allow the for the v-model syntax. When using\nVuex for state management, you can use the input event to dispatch an\naction, or trigger a mutation.\n\n\n\n"},"Advanced/Ajax.html":{"url":"Advanced/Ajax.html","title":"AJAX","keywords":"","body":"AJAX Remote Option Loading\n\nThe onSearch prop allows you to load options via ajax in a parent component \nwhen the search text is updated. It is invoked with two parameters, search & loading.\n/**\n* Accepts a callback function that will be run\n* when the search text changes. The callback\n* will be invoked with these parameters:\n*\n* @param {search} String Current search text\n* @param {loading} Function Toggle loading class\n*/\nonSearch: {\n type: Function,\n default: false\n},\n\nThe loading function accepts a boolean parameter that will be assigned \nto the vue-select internal loading property. Call loading(true) to set the \nloading property to true - toggling the loading spinner. After your \nasynchronous operation completes, call loading(false) to toggle it off. \nDisabling Filtering\nWhen loading server side options, it can be useful to disable the \nclient side filtering. Use the filterable prop to disable filtering.\n/**\n * When true, existing options will be filtered\n * by the search text. Should not be used in\n * conjunction with taggable.\n * \n * @type {Boolean}\n */\nfilterable: {\n type: Boolean,\n default: true\n},\n\nLoading Spinner\nVue Select includes a default loading spinner that appears when the loading class is present. The spinner slot allows you to implement your own spinner.\nLoading...\n\nLibrary Agnostic\nSince Vue.js does not ship with ajax functionality as part of the core library, it's up to you to process the ajax requests in your parent component.\nI recommend using axios for creating your applications HTTP layer, \nor fetch() for simple requests.\n"},"Examples.html":{"url":"Examples.html","title":"Examples","keywords":"","body":"Codepen Collection\nI've put together a collection of examples, including all the examples \nfrom this documentation site on Codepen.\n"},"Api/Props.html":{"url":"Api/Props.html","title":"Props","keywords":"","body":"Select\n/**\n * Contains the currently selected value. Very similar to a\n * `value` attribute on an . You can listen for changes\n * using 'change' event using v-on\n * @type {Object||String||null}\n */\nvalue: {\n default: null\n},\n\n/**\n * An array of strings or objects to be used as dropdown choices.\n * If you are using an array of objects, vue-select will look for\n * a `label` key (ex. [{label: 'This is Foo', value: 'foo'}]). A\n * custom label key can be set with the `label` prop.\n * @type {Array}\n */\noptions: {\n type: Array,\n default() {\n return []\n },\n},\n\n/**\n * Disable the entire component.\n * @type {Boolean}\n */\ndisabled: {\n type: Boolean,\n default: false\n},\n\n/**\n * Sets the max-height property on the dropdown list.\n * @deprecated\n * @type {String}\n */\nmaxHeight: {\n type: String,\n default: '400px'\n},\n\n/**\n * Enable/disable filtering the options.\n * @type {Boolean}\n */\nsearchable: {\n type: Boolean,\n default: true\n},\n\n/**\n * Equivalent to the `multiple` attribute on a `` input.\n * @type {Boolean}\n */\nmultiple: {\n type: Boolean,\n default: false\n},\n\n/**\n * Equivalent to the `placeholder` attribute on an ``.\n * @type {String}\n */\nplaceholder: {\n type: String,\n default: ''\n},\n\n/**\n * Sets a Vue transition property on the `.dropdown-menu`. vue-select\n * does not include CSS for transitions, you'll need to add them yourself.\n * @type {String}\n */\ntransition: {\n type: String,\n default: 'fade'\n},\n\n/**\n * Enables/disables clearing the search text when an option is selected.\n * @type {Boolean}\n */\nclearSearchOnSelect: {\n type: Boolean,\n default: true\n},\n\n/**\n * Close a dropdown when an option is chosen. Set to false to keep the dropdown\n * open (useful when combined with multi-select, for example)\n * @type {Boolean}\n */\ncloseOnSelect: {\n type: Boolean,\n default: true\n},\n\n/**\n * Tells vue-select what key to use when generating option\n * labels when each `option` is an object.\n * @type {String}\n */\nlabel: {\n type: String,\n default: 'label'\n},\n\n/**\n * Callback to generate the label text. If {option}\n * is an object, returns option[this.label] by default.\n * @type {Function}\n * @param {Object || String} option\n * @return {String}\n */\ngetOptionLabel: {\n type: Function,\n default(option) {\n if (typeof option === 'object') {\n if (!option.hasOwnProperty(this.label)) {\n return console.warn(\n `[vue-select warn]: Label key \"option.${this.label}\" does not` +\n ` exist in options object ${JSON.stringify(option)}.\\n` +\n 'http://sagalbot.github.io/vue-select/#ex-labels'\n )\n }\n if (this.label && option[this.label]) {\n return option[this.label]\n }\n }\n return option;\n }\n},\n\n/**\n * Callback to filter the search result the label text.\n * @type {Function}\n * @param {Object || String} option\n * @param {String} label\n * @param {String} search\n * @return {Boolean}\n */\nfilterFunction: {\n type: Function,\n default(option, label, search) {\n return (label || '').toLowerCase().indexOf(search.toLowerCase()) > -1\n }\n},\n\n/**\n * An optional callback function that is called each time the selected\n * value(s) change. When integrating with Vuex, use this callback to trigger\n * an action, rather than using :value.sync to retreive the selected value.\n * @type {Function}\n * @param {Object || String} val\n */\nonChange: {\n type: Function,\n default: function (val) {\n this.$emit('input', val)\n }\n},\n\n/**\n * Enable/disable creating options from searchInput.\n * @type {Boolean}\n */\ntaggable: {\n type: Boolean,\n default: false\n},\n\n/**\n * Set the tabindex for the input field.\n * @type {Number}\n */\ntabindex: {\n type: Number,\n default: null\n},\n\n/**\n * When true, newly created tags will be added to\n * the options list.\n * @type {Boolean}\n */\npushTags: {\n type: Boolean,\n default: false\n},\n\n/**\n * When true, existing options will be filtered\n * by the search text. Should not be used in conjunction\n * with taggable.\n * @type {Boolean}\n */\nfilterable: {\n type: Boolean,\n default: true\n},\n\n/**\n * User defined function for adding Options\n * @type {Function}\n */\ncreateOption: {\n type: Function,\n default(newOption) {\n if (typeof this.mutableOptions[0] === 'object') {\n newOption = {[this.label]: newOption}\n }\n this.$emit('option:created', newOption)\n return newOption\n }\n},\n\n/**\n * When false, updating the options will not reset the select value\n * @type {Boolean}\n */\nresetOnOptionsChange: {\n type: Boolean,\n default: false\n},\n\n/**\n * Disable the dropdown entirely.\n * @type {Boolean}\n */\nnoDrop: {\n type: Boolean,\n default: false\n},\n\n/**\n * Sets the id of the input element.\n * @type {String}\n * @default {null}\n */\ninputId: {\n type: String\n},\n\n/**\n * Sets RTL support. Accepts 'ltr', 'rtl', 'auto'.\n * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/dir\n * @type {String}\n * @default 'auto'\n */\ndir: {\n type: String,\n default: 'auto'\n},\n\nAJAX\n/**\n * Toggles the adding of a 'loading' class to the main\n * .v-select wrapper. Useful to control UI state when\n * results are being processed through AJAX.\n */\nloading: {\n type: Boolean,\n default: false\n},\n\n/**\n * Accept a callback function that will be\n * run when the search text changes.\n *\n * loading() accepts a boolean value, and can\n * be used to toggle a loading class from\n * the onSearch callback.\n *\n * @param {search} String Current search text\n * @param {loading} Function(bool) Toggle loading class\n */\nonSearch: {\n type: Function,\n default: function(search, loading){}\n}\n\n"}}}
\ No newline at end of file
diff --git a/docs/styles/website.css b/docs/styles/website.css
deleted file mode 100644
index f1d4d1a..0000000
--- a/docs/styles/website.css
+++ /dev/null
@@ -1,228 +0,0 @@
-@import url('https://fonts.googleapis.com/css?family=Roboto+Mono|Source+Sans+Pro:300,400,600');
-
-body {
- letter-spacing: 0;
- color: #34495e;
- font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif;
- font-size: 15px;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- color: #34495e;
- background-color: #fff;
- margin: 0;
-}
-
-/* LANGS.md index page */
-.book-langs-index {
- font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif;
-}
-.book-langs-index .inner .languages {
- padding: 20px 0px;
-}
-.book-langs-index .inner .languages li {
- float: none;
-}
-li a {
- color: #42b983;
- font-weight: 600;
-}
-
-/* set correct fonts on sidebar and main page */
-.book .book-body .page-wrapper .page-inner section.normal, .book-summary { font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif; }
-
-/* sidebar */
-.book-summary ul.summary li a,
-.book-summary ul.summary li span {
- color: #7f8c8d;
- font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif;
-}
-.book .book-summary ul.summary li span {
- opacity: 0.6;
- cursor: not-allowed;
-}
-.book-summary ul.summary li.active>a {
- color: #42b983;
- font-weight: 600;
-}
-
-#book-search-input { background-color: #fafafa; }
-.book-summary { background-color: #fff; }
-
-/* markdown content found on pages */
-.markdown-section h1,
-.markdown-section h2,
-.markdown-section h3,
-.markdown-section h4,
-.markdown-section strong {
- font-weight: 600;
- color: #2c3e50;
-}
-.markdown-section a {
- color: #42b983;
- font-weight: 600;
-}
-.markdown-section p,
-.markdown-section ul,
-.markdown-section ol {
- word-spacing: 0.05em;
-}
-.markdown-section em {
- color: #7f8c8d;
-}
-
-.markdown-section pre {
- padding: 1.2em 1.4em;
- line-height: 1.5em;
- margin: 0;
-}
-
-.markdown-section code, .markdown-section pre {
- font-family: 'Roboto Mono', Monaco, courier, monospace;
- -webkit-font-smoothing: initial;
- -moz-osx-font-smoothing: initial;
- background-color: #f8f8f8;
-}
-code span.css,
-code span.javascript,
-code span.html,
-span[class^="hljs-"] {
- -webkit-font-smoothing: initial;
- -moz-osx-font-smoothing: initial;
-}
-.markdown-section pre>code {
- font-size: 0.8em;
- display: block;
-}
-.markdown-section code:after, .markdown-section code:before {
- content: none;
- letter-spacing: 0.05em;
-}
-
-code, pre {
- font-family: 'Roboto Mono', Monaco, courier, monospace;
- font-size: 0.8em;
- background-color: #f8f8f8;
- -webkit-font-smoothing: initial;
- -moz-osx-font-smoothing: initial;
-}
-code {
- color: #e96900;
- padding: 3px 5px;
- margin: 0 2px;
- border-radius: 2px;
- white-space: nowrap;
-}
-
-code .token {
- min-height: 1.5em;
- -webkit-font-smoothing: initial;
- -moz-osx-font-smoothing: initial;
-}
-pre code { position: relative; }
-pre code.lang-html:after,
-pre code.lang-js:after,
-pre code.lang-bash:after,
-pre code.lang-css:after {
- position: absolute;
- top: 0;
- right: 0;
- color: #ccc;
- text-align: right;
- font-size: 0.75em;
- padding: 5px 10px 0;
- line-height: 15px;
- height: 15px;
- font-weight: 600;
-}
-pre code.lang-html:after {
- content: 'HTML';
-}
-pre code.lang-js:after {
- content: 'JS';
-}
-pre code.lang-bash:after {
- content: 'Shell';
-}
-pre code.lang-css:after {
- content: 'CSS';
-}
-.content img {
- max-width: 100%;
-}
-.content span.light {
- color: #7f8c8d;
-}
-.content span.info {
- font-size: 0.85em;
- display: inline-block;
- vertical-align: middle;
- width: 280px;
- margin-left: 20px;
-}
-.markdown-section h1 {
- margin: 0 0 1em;
-}
-.markdown-section h2 {
- margin: 45px 0 0.8em;
- padding-bottom: 0.7em;
- border-bottom: 1px solid #ddd;
-}
-.markdown-section h3 {
- margin: 52px 0 1.2em;
-}
-.markdown-section figure,
-.markdown-section p,
-.markdown-section ul,
-.markdown-section ol {
- margin: 1.2em 0;
-}
-.markdown-section p,
-.markdown-section ul,
-.markdown-section ol {
- line-height: 1.6em;
-}
-.markdown-section ul,
-.markdown-section ol {
- padding-left: 1.5em;
-}
-.markdown-section a {
- color: #42b983;
- font-weight: 600;
-}
-.markdown-section blockquote {
- margin: 2em 0;
- padding-left: 20px;
- border-left: 4px solid #42b983;
-}
-.markdown-section blockquote p {
- font-weight: 600;
- margin-left: 0;
-}
-.markdown-section iframe {
- margin: 1em 0;
-}
-
-/* these aren't in gitbook at the moment, but leaving them in for future reference */
-img {
- border: none;
-}
-.highlight {
- overflow-x: auto;
- position: relative;
- padding: 0;
- background-color: #f8f8f8;
- padding: 0.8em 0.8em 0.4em;
- line-height: 1.1em;
- border-radius: 2px;
-}
-.highlight table,
-.highlight tr,
-.highlight td {
- width: 100%;
- border-collapse: collapse;
- padding: 0;
- margin: 0;
-}
-.highlight .gutter {
- width: 1.5em;
-}
\ No newline at end of file
diff --git a/index.html b/index.html
index d7e5a4a..0ab9853 100644
--- a/index.html
+++ b/index.html
@@ -1,14 +1,12 @@
-Vue Select | VueJS Select2 Component
Vue Select
A Vue.js select component that provides similar functionality to Select2/Chosen without the overhead of jQuery.
{{ option.title }}
Supports Vuex
Tagging Support
Custom Templating
Zero JS/CSS dependencies
Custom Filtering Algorithms
+95% Test Coverage
Select Single/Multiple
Typeahead Suggestions
Supports RTL & Translations
Plays nice with CSS Frameworks
And so much more! Get started with: yarn add vue-select