未定义setInlineProgress错误FrameWork7-vue

时间:2018-10-12 09:47:18

标签: javascript node.js vue.js html-framework-7

我正在尝试基于文档实施进度条。 在这里,我找到了一些示例,并且该函数是在methods对象中设置的。

我确实声明了该函数,但是当我尝试使用它时却说该函数未定义。我什至无法在其中打印console.log,因此该功能根本不会执行。 我很高兴听到一些建议。谢谢。

<template id="page-highpth">
      <f7-page>
          <f7-navbar>
              <f7-nav-left title="Form" back-link="" sliding>
                <f7-link back-link="Back" ></f7-link>
              </f7-nav-left>
              <f7-nav-center sliding>High or rising PTH</f7-nav-center>
              <f7-nav-right>
                <f7-link icon="icon-bars" open-panel="right"></f7-link>
              </f7-nav-right>
          </f7-navbar>
          <f7-block strong>
            <p><f7-progressbar :progress="10" id="demo-inline-progressbar"></f7-progressbar></p>
            <f7-segmented raised>
              <f7-button @click="setInlineProgress(10)">10%</f7-button>
              <f7-button @click="setInlineProgress(30)">30%</f7-button>
              <f7-button @click="setInlineProgress(50)">50%</f7-button>
              <f7-button @click="setInlineProgress(100)">100%</f7-button>
            </f7-segmented>
          </f7-block>
      </f7-page>
    </template>

app.js

var app = new Vue({
  el: '#app',
  methods: {
    toHomeScreen(){
      this.$f7.getCurrentView().router.back({ pageName: 'home-page', force: true});
      this.$f7.closePanel();
    },
    setInlineProgress(value){
      const self = this;
      const app = self.$f7;
      console.log(value);
      app.progressbar.set('#demo-inline-progressbar', value);
    }
  },
  // Init Framework7 by passing parameters here
  framework7: {
    root: '#app',
    /* Uncomment to enable Material theme: */
    // material: true,
    routes: [
      {
        path:'/',
        name: 'home'
      }
      ,
      {
        path: '/education/',
        component: 'page-education'
      },
      {
        path: '/ckdmbddef/',
        component: 'page-mbddef'
      },  

    ],

  }
});

1 个答案:

答案 0 :(得分:0)

好吧,大约6个小时后,我终于承认要访问该功能,我需要引用它。

var app = new Vue({... blah});

我要做的就是:在我的代码中使用app.setInlineProgress(),而不是setInlineProgress();

希望这对某人有用。