4325fc22d6bc62c8e4e0d2746e97e379d17a9cb2.svn-base 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <template>
  2. <div :class="noroll?'noroll':''">
  3. <StSportsHead />
  4. <StGambling />
  5. <concede />
  6. <concede />
  7. <goal />
  8. <goal />
  9. <concede />
  10. <concede />
  11. <WaveBladder />
  12. <WaveBladder />
  13. <concede />
  14. <concede />
  15. <goal />
  16. <goal />
  17. <concede />
  18. <concede />
  19. <concede />
  20. <StLinkFooter />
  21. </div>
  22. </template>
  23. <script>
  24. import StSportsHead from "../../../components/StSportsHead";
  25. import StGambling from "../../../components/StGambling";
  26. import Concede from "../../../components/StConcede";
  27. import Goal from "../../../components/StGoal.vue"
  28. import WaveBladder from "../../../components/StWaveBladder"
  29. import StLinkFooter from "../../../components/StLinkFooter"
  30. export default {
  31. data() {
  32. return {
  33. noroll:false,
  34. }
  35. },
  36. computed:{
  37. noRoll(){
  38. return this.$store.getters.getNoRoll
  39. }
  40. },
  41. watch:{
  42. noRoll(val){
  43. this.noroll=val
  44. }
  45. },
  46. methods: {
  47. },
  48. components:{
  49. StSportsHead,
  50. StGambling,
  51. Concede,
  52. Goal,
  53. WaveBladder,
  54. StLinkFooter
  55. }
  56. }
  57. </script>
  58. <style scoped>
  59. .noroll{
  60. position: fixed;
  61. width: 100%;
  62. top: 0;
  63. left: 0;
  64. }
  65. </style>