question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

[proposal] Add a full basic example to introduce components

See original GitHub issue

I believe it would be great to add in the “Quick start” section one example of a full application using bootstrap-vue. This would be particularly useful to those who are not used to Vue components and for whom it could not be obvious how to consume an event from a component.

A basic example showing how click (found in the Event section of the <b-button> component’s documentation) could be used to modify data in the Vue instance:

(HTML)

<div id="root">
  <b-button v-on:click="counter += 1">hello</b-button>
  {{counter}}
</div>

(JS)

new Vue ({
  el: "#root",
  data: {
    counter: 0
  }
})

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Reactions:2
  • Comments:6 (5 by maintainers)

github_iconTop GitHub Comments

1reaction
alexsasharegancommented, Jun 29, 2017

@wsw70, how would feel about getting this PR started? It’s fresh in your mind, so you’re perspective would be awesome! You can even leave placeholders or pseudo-code that we can contribute to if you’re still not 100% on how to throw up some app examples.

1reaction
tmorehousecommented, Jun 29, 2017

This is a great idea.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Basic components of a proposal | Foundation Relations
Basic components of a proposal · 1. Abstract/Summary · 2. Statement of Need · 3. Project Activity, Methodology and Outcomes · 4. Evaluation...
Read more >
Basic Components of a Proposal
Basic components of a proposal include the title page, abstract summary, statement of work, budget, budget justification, biographical sketch (CV), ...
Read more >
Key Elements of a Complete Proposal
Write this last and with enthusiasm. Project Description (also called Narrative or Research Plan). ▫ Introduction – introduce applicant; establish credibility ...
Read more >
How to Write a Project Proposal (Steps & Template Included)
All project proposals have six elements which construct the proposal's foundation. Let's take a look at a project proposal example. Sample ...
Read more >
How to Write a Business Proposal [Examples + Template]
It includes sample content and walks you through the essential elements of an SEO proposal. 4. Sales Proposal. Business Proposal Templates: ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found