gitextract_pwes50fh/ ├── .editorconfig ├── .github/ │ └── workflows/ │ └── push.yaml ├── .gitignore ├── .gitpod.Dockerfile ├── .gitpod.yml ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── docs/ │ ├── _config.yml │ ├── _layouts/ │ │ └── default.html │ ├── docs/ │ │ ├── index.md │ │ ├── management/ │ │ │ ├── cli.md │ │ │ └── configuration.md │ │ ├── pyjs_bridge.md │ │ └── vue_concepts/ │ │ ├── computed_properties.md │ │ ├── custom_directives.md │ │ ├── custom_vmodel.md │ │ ├── data_methods.md │ │ ├── extend.md │ │ ├── filter.md │ │ ├── instance_components.md │ │ ├── lifecycle_hooks.md │ │ ├── plugins_mixins.md │ │ ├── props.md │ │ ├── render_function.md │ │ ├── vue-router.md │ │ └── vuex.md │ └── planning.md ├── examples/ │ ├── elastic_header/ │ │ ├── app.py │ │ ├── header-view.html │ │ ├── main.html │ │ ├── style.css │ │ └── vuepy.yml │ ├── element_ui/ │ │ ├── app.py │ │ ├── components/ │ │ │ └── navigation.py │ │ ├── navigation.html │ │ ├── style.css │ │ └── vuepy.yml │ ├── github_commits/ │ │ ├── app.py │ │ ├── commits.html │ │ ├── data.json │ │ ├── style.css │ │ └── vuepy.yml │ ├── grid_component/ │ │ ├── app.py │ │ ├── form.html │ │ ├── grid.html │ │ ├── style.css │ │ └── vuepy.yml │ ├── index.md │ ├── markdown_editor/ │ │ ├── app.py │ │ ├── editor.html │ │ ├── style.css │ │ └── vuepy.yml │ ├── modal_component/ │ │ ├── app.py │ │ ├── main.html │ │ ├── modal-template.html │ │ ├── style.css │ │ └── vuepy.yml │ ├── svg_graph/ │ │ ├── app-template.html │ │ ├── app.py │ │ ├── polygraph-template.html │ │ ├── style.css │ │ └── vuepy.yml │ ├── todo_mvc/ │ │ ├── app-template.html │ │ ├── app.py │ │ ├── style.css │ │ └── vuepy.yml │ └── tree_view/ │ ├── app-template.html │ ├── app.py │ ├── style.css │ ├── tree-template.html │ └── vuepy.yml ├── pyproject.toml ├── requirements.txt ├── setup.py ├── stubs/ │ ├── browser.py │ ├── javascript.py │ └── local_storage.py ├── tests/ │ ├── __init__.py │ ├── cli/ │ │ └── test_provider.py │ ├── pytest.ini │ ├── selenium/ │ │ ├── .gitignore │ │ ├── chromedriver.py │ │ ├── conftest.py │ │ ├── pytest.ini │ │ ├── test_api.py │ │ ├── test_examples.py │ │ ├── test_guide/ │ │ │ ├── test_components/ │ │ │ │ ├── test_custom_events.py │ │ │ │ └── test_props.py │ │ │ ├── test_essentials/ │ │ │ │ ├── test_components_basics.py │ │ │ │ ├── test_computed_properties.py │ │ │ │ ├── test_event_handler.py │ │ │ │ ├── test_instance.py │ │ │ │ ├── test_introduction.py │ │ │ │ └── test_list_rendering.py │ │ │ └── test_reusability_composition/ │ │ │ ├── test_filters.py │ │ │ ├── test_mixins.py │ │ │ └── test_render_function.py │ │ ├── test_vuerouter.py │ │ └── test_vuex.py │ ├── test_install.py │ └── unit/ │ ├── test_bridge/ │ │ ├── __init__.py │ │ ├── mocks.py │ │ ├── test_dict.py │ │ ├── test_jsobject.py │ │ ├── test_list.py │ │ ├── test_vue.py │ │ └── test_vuex.py │ ├── test_transformers/ │ │ ├── conftest.py │ │ ├── test_component.py │ │ ├── test_router.py │ │ └── test_store.py │ ├── test_utils.py │ └── test_vue.py ├── vue/ │ ├── __init__.py │ ├── bridge/ │ │ ├── __init__.py │ │ ├── dict.py │ │ ├── list.py │ │ ├── object.py │ │ ├── vue_instance.py │ │ └── vuex_instance.py │ ├── decorators/ │ │ ├── __init__.py │ │ ├── action.py │ │ ├── base.py │ │ ├── components.py │ │ ├── computed.py │ │ ├── custom.py │ │ ├── data.py │ │ ├── directive.py │ │ ├── extends.py │ │ ├── filters.py │ │ ├── getter.py │ │ ├── lifecycle_hook.py │ │ ├── method.py │ │ ├── mixins.py │ │ ├── model.py │ │ ├── mutation.py │ │ ├── plugin.py │ │ ├── prop.py │ │ ├── render.py │ │ ├── routes.py │ │ ├── state.py │ │ ├── template.py │ │ └── watcher.py │ ├── router.py │ ├── store.py │ ├── transformers.py │ ├── utils.py │ └── vue.py └── vuecli/ ├── __init__.py ├── cli.py ├── index.html └── provider/ ├── __init__.py ├── flask.py ├── provider.py └── static.py