Skip to content

Instantly share code, notes, and snippets.

@foozlereducer
foozlereducer / SampleMetric.js
Last active February 23, 2024 14:56
Vue Device Switching
/** ---------------------------------------------------------------*/
// app/src/views/SampleMetric.vue
/** ---------------------------------------------------------------*/
<script setup>
import { deviceSize } from '../composables/deviceSize.js'
import HomeView from './Home.vue';
import Phone from './Phone.vue'
import Tablet from './tablet.vue'
import {devices} from '../composables/devices.js'
const sizes = deviceSize(devices)