4 .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
5 a#mainLink(href="/#/variants/list")
6 | {{ st.tr["View alphabetical variants list"] }}
11 import { store } from "@/store";
12 import afterRawLoad from "@/utils/afterRawLoad";
25 "raw-loader!@/translations/variants/" + this.st.lang + ".pug"
32 // oninput listener, required for smartphones:
33 setCurPrefix: function(e) {
34 this.curPrefix = e.target.value;
36 getLink: function(vname) {
37 return "/variants/" + vname;
39 getVclasses: function(varray, idx) {
40 const idxMod2 = idx % 2;
42 'col-md-offset-1': idxMod2 == 0,
43 'col-lg-offset-2': idxMod2 == 0,
44 'last-noneighb': idxMod2 == 0 && idx == varray.length - 1
51 <style lang="sass" scoped>