64 lines
		
	
	
		
			1023 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1023 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| ---
 | |
| extend: '@vue/cli-service/generator/template/src/App.vue'
 | |
| replace:
 | |
|   - !!js/regexp /<template>[^]*?<\/template>/
 | |
|   - !!js/regexp /\n<script>[^]*?<\/script>\n/
 | |
|   - !!js/regexp /  margin-top[^]*?<\/style>/
 | |
| ---
 | |
| 
 | |
| <%# REPLACE %>
 | |
| <template>
 | |
|   <nav>
 | |
|     <router-link to="/">Home</router-link> |
 | |
|     <router-link to="/about">About</router-link>
 | |
|   </nav>
 | |
|   <router-view/>
 | |
| </template>
 | |
| <%# END_REPLACE %>
 | |
| 
 | |
| <%# REPLACE %>
 | |
| <%# END_REPLACE %>
 | |
| 
 | |
| <%# REPLACE %>
 | |
| }
 | |
| 
 | |
| <%_ if (rootOptions.cssPreprocessor !== 'stylus') { _%>
 | |
|   <%_ if (!rootOptions.cssPreprocessor) { _%>
 | |
| nav {
 | |
|   padding: 30px;
 | |
| }
 | |
| 
 | |
| nav a {
 | |
|   font-weight: bold;
 | |
|   color: #2c3e50;
 | |
| }
 | |
| 
 | |
| nav a.router-link-exact-active {
 | |
|   color: #42b983;
 | |
| }
 | |
|   <%_ } else { _%>
 | |
| nav {
 | |
|   padding: 30px;
 | |
| 
 | |
|   a {
 | |
|     font-weight: bold;
 | |
|     color: #2c3e50;
 | |
| 
 | |
|     &.router-link-exact-active {
 | |
|       color: #42b983;
 | |
|     }
 | |
|   }
 | |
| }
 | |
|   <%_ } _%>
 | |
| <%_ } else { _%>
 | |
| nav
 | |
|   padding 30px
 | |
|   a
 | |
|     font-weight bold
 | |
|     color #2c3e50
 | |
|     &.router-link-exact-active
 | |
|       color #42b983
 | |
| <%_ } _%>
 | |
| </style>
 | |
| <%# END_REPLACE %>
 |