Why is vue.js having trouble scaling? Is the second component displaying incorrectly?
It seems like there may be an issue with how the Javascript code snippets are functioning.
Have you configured the URL Rewrite extension in IIS and added the necessary rules to the webconfig
file?
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Handle History Mode and custom 404/500" stopProcessing="true">
<match url="(.*)" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.html" />
</rule>
</rules>
</rewrite>
If needed, you can download the URL Rewrite extension here: