mirror of https://github.com/sveltejs/svelte
parent
8f6499a9dd
commit
dfd73987e3
@ -0,0 +1,8 @@
|
|||||||
|
export default {
|
||||||
|
html: `ABCD`,
|
||||||
|
|
||||||
|
test ( assert, component ) {
|
||||||
|
assert.equal( component.get( 'compute' ), 'ABCD' );
|
||||||
|
component.destroy();
|
||||||
|
}
|
||||||
|
};
|
@ -0,0 +1,17 @@
|
|||||||
|
{{compute}}
|
||||||
|
<script>
|
||||||
|
import { addCss, addedCss, applyComputations, renderMainFragment } from './module.js';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
value: addCss + addedCss + applyComputations + renderMainFragment
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
compute: value => value.toUpperCase()
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<style>
|
||||||
|
</style>
|
@ -0,0 +1,4 @@
|
|||||||
|
export const addCss = 'a';
|
||||||
|
export const addedCss = 'b';
|
||||||
|
export const applyComputations = 'c';
|
||||||
|
export const renderMainFragment = 'd';
|
Loading…
Reference in new issue