mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-04 03:03:18 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			349 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			349 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <v-container fluid>
 | 
						|
    <BaseCardSectionTitle title="Manage Categories"> </BaseCardSectionTitle>
 | 
						|
  </v-container>
 | 
						|
</template>
 | 
						|
    
 | 
						|
<script lang="ts">
 | 
						|
import { defineComponent } from "@nuxtjs/composition-api";
 | 
						|
 | 
						|
export default defineComponent({
 | 
						|
  layout: "admin",
 | 
						|
  setup() {
 | 
						|
    return {};
 | 
						|
  },
 | 
						|
});
 | 
						|
</script>
 | 
						|
    
 | 
						|
<style scoped>
 | 
						|
</style> |