This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
phoenix_tutorial tree web/ | |
web/ | |
├── channels | |
├── controllers | |
│ └── page_controller.ex | |
├── i18n.ex | |
├── models | |
│ ├── jobs.ex | |
│ ├── queries.ex | |
│ └── repo.ex |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Unchecked dependencies for environment dev: | |
* postgrex (Hex package) | |
the dependency postgrex defined | |
> In mix.exs: | |
{:postgrex, ">= 0.0.0", [hex: :postgrex]} | |
does not match the requirement specified | |
> In deps/ecto/mix.exs: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div> | |
<span class="Plan__name">{{ plan.name }}</span> | |
<span class=Plan__price>{{ plan.price}}/month</span> | |
</div> | |
</template> | |
<script> | |
export default { | |
name: 'plan', | |
props: ['plan'] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div> | |
<span class="Plan__name">{{ plan.name }}</span> | |
<span class=Plan__price>{{ plan.price}}/month</span> | |
<button @click=setActivePlan>Upgrade</button> | |
</div> | |
</template> | |
<script> | |
export default { | |
name: 'plan', |
OlderNewer