forked from bcgov/business-create-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
18538 Resulting Business Name and Type component (WIP) (bcgov#591)
* PR (TODO fix unit tests) * Added unit tests for numbered am * Fixed test case and update from comments * Added additional test case * Updated unit test formatting. * Updated package.json * Added bullet points for numberd AML * Fixed test cases
- Loading branch information
1 parent
030b6ea
commit aae7507
Showing
6 changed files
with
143 additions
and
6 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<template> | ||
<section class="business-type-help mt-0"> | ||
<header> | ||
<h3 class="text-center"> | ||
Help with Resulting Business Type | ||
</h3> | ||
<div class="mt-6"> | ||
<p class="ml-1"> | ||
A BC Limited Company and BC Community Contribution Company can amalgamate | ||
but must form a BC Community Contribution Company. - BCA s. 51.98 | ||
</p> | ||
<p class="ml-1"> | ||
A BC Unlimited Liability Company and BC Community Contribution | ||
Company can amalgamate but must form a BC Community Contribution Company. - BCA s. 51.98 | ||
</p> | ||
<p class="ml-1"> | ||
For assistance with amalgamations involving extraprovincial corporations, please contact BC Registries staff: | ||
</p> | ||
</div> | ||
<br> | ||
<RegistriesContactInfo /> | ||
</header> | ||
</section> | ||
</template> | ||
<script lang="ts"> | ||
import { Component, Vue } from 'vue-property-decorator' | ||
import RegistriesContactInfo from '@/components/common/RegistriesContactInfo.vue' | ||
@Component({ | ||
components: { | ||
RegistriesContactInfo | ||
} | ||
}) | ||
export default class BusinessTypeHelp extends Vue {} | ||
</script> |
This file contains 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
This file contains 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
This file contains 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